Problème d'exécution entre MATLAB 6.5 et 7
bonjour,
J'ai un programme qui se compile très bien sous MatLab 7 mais avec le MatLab 6.5;il donne l'erreur suivante:
Citation:
??? Attempt to execute SCRIPT spline as a function.
Error in ==> D:\projet-master\programme MATLAB\SPLINE TRAJECTOIRE\SPLINE.m
On line 269 ==> cs=spline(x,y);
et voilà une partie du programme ou se trouve l'erreur:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| x=zeros(1,n);
y=zeros(1,n);
for j=1:1
for i=1:n
x(i)=t(i)
y(i)=q(j,i)
end
cs=spline(x,y);
xx=linspace(x(1),x(n),101);
end
plot(x,y,'o',xx,ppval(cs,xx),'-'); |
est ce quelqu'un peut me donner des explications de ce phénomène?