Bonjour voilà j'ai écrit un petit programme matlab :
clear all
t=0:0.1:100; % domaine
%a=1 ; w=1 ; k=1 ;
p=1;
x=((2*p*cos(t)/(sqrt(16*p*p*t*t+4*p*p)))+((4* t*t*p)/(sqrt(16*p*p*t*t+4*p*p))));
y=((4*t*p*cos(t)/(sqrt(16*p*p*t*t+4*p*p)))+((2* t*p)/(sqrt(16*p*p*t*t+4*p*p))));
z=2*sin(t);
%tracé
clf;
plot3(x,y,z);
xlabel('x');
ylabel('y');
zlabel('z');
title('hélice');
grid;
Seulement quand je lance mon programme matlab m'affiche cela :
ans =
104 101 108 105 99 101
Quelqu'un pourrait m'aider ? ^^
-----