问题:
我对MATLAB几乎没有经验,但我尝试使用三次样条函数在线查找教程,但没有多大帮助。我尝试了以下但是说实话,我不知道这是否正确,或者接下来该做什么。
x = [0 3 5 8 13];
y = [0 225 383 623 993];
x_new = 0:.01:5;
y_new = interp1(x,y,x_new,'spline');
plot(x,y,'d')
legend off
hold
plot(x_new,y_new)
title('Time versus Velocity','fontsize',18)
ylabel('Distance','fontsize',14)
xlabel('Time','fontsize',14)
legend('Data Points','Cubic Spline Interpolation')