Mathematica 5.2、7.0.1、および8.0.1を使用して同じデータを補間してみましょう:
Interpolation[{{0, 0}, {1, 1}, {2, 3}, {3, 4}, {4, 3}, {5, 0}}] // InputForm
出力は次のとおりです。
マテマティカ5.2:
InterpolatingFunction[{{0, 5}},
{2, 0, True, False, {3}, {0}}, {{0, 1, 2, 3, 4, 5}},
{{0}, {1}, {3}, {4}, {3}, {0}}, {Automatic}]
Mathematica 7.0.1:
InterpolatingFunction[{{0, 5}}, {3, 1, 0, {6}, {4}, 0, 0, 0, 0},
{{0, 1, 2, 3, 4, 5}}, {{0}, {1}, {3}, {4}, {3}, {0}}, {Automatic}]
Mathematica 8.0.1:
InterpolatingFunction[{{0, 5}}, {4, 3, 0, {6}, {4}, 0, 0, 0, 0, Automatic},
{{0, 1, 2, 3, 4, 5}}, {{0}, {1}, {3}, {4}, {3}, {0}}, {Automatic}]
Mathematica 5.2の出力は、バージョン 7.0.1 で入力として使用すると機能しますが、バージョン 8.0.1 では機能しません。古いスタイルのサポートはInterpolatingFunction
バージョン 8 で廃止されたようです。Mathematica 5.2 で生成されたデータをバージョン 8.0.1 で再利用することはできますInterpolatingFunction
か?