我需要在matlab的幫助下解決照片上的問題我在做什麼錯了?有誰可以幫忙?對我很重要。Matlab Clamped Spline
clc;
clear;
format compact;
T=[0 3 5 8 13]
V=[0 225 383 623 993]
A=[75 77 80 74 72]
v_5=interp1(T,V,5);
a_5=interp1(T,A,5);
t_5=interp1(T,A,5);
x=0:3:13;
y=interp1(T,A,x,'spline');
plot(T,V,'o',x,y),title('speed vs distance ')
「Matlap」??可能是錯別字。 – ja72
查看'spline()'函數以完成分配。 – ja72