2

任何人都知道我在哪里可以找到 MATLAB 中的 Hermite 插值算法。哪种 Hermite 插值算法可以解决这个问题?

我需要计算一个多项式。示例(仅示例):

x=[1,2,3];

y=[0.5,1,12]

y'=[1,0.2,0.9]

y''=[0.1,0.6,0.8]

x2=[1,1.5,2,2.5,3,3.5];

polynom=hermit_interpolation(x,y,y',y'',x2); % i need the polynom to

y2=polyval(polynom,x2);

plot(x2,y2);

感谢您的任何回答。

4

1 回答 1

1

该函数是pchip(),在以下位置通过示例很好地记录了该函数:http: //www.mathworks.com/help/techdoc/ref/pchip.html

于 2011-11-08T21:42:17.390 回答