我現在的問題是試圖使用FunctionInterpolation []在複雜的功能,最簡單的,看看這可能是當你比較的區別:提高數學FunctionInterpolation精度/域
FunctionInterpolation[Sin[t], {t, 0, 30}]
Plot[%[t], {t, 0, 30}]
和
FunctionInterpolation[Sin[t], {t, 0, 1000}]
Plot[%[t], {t, 0, 30}]
通過增加函數的域,插值變得非常不準確,我正在尋找一種創建FunctionInterpolation []的方法,該函數對於任意長的域具有任意高的準確度。對於短域來說似乎是可能的,但是我迄今還沒有找到兩者的解決方案。
如果這是不可能的,爲什麼不呢? InterpolationFunction的形式有什麼特別之處,我不知道?
你知道你的功能是週期性的嗎? –