MATLAB: How do i write the code to plot this

plotting

can someone please help write the code to plot this figure

Best Answer

Something like:
t=0:.1:40;
x=cos(t);
y=sin(t);
z=t;
plot3(x,y,z);