MATLAB Preliminaries
% A script file to plot a helix
%
t = linspace(0,10*pi,200);
x = cos(t);
y = sin(t);
z = t;
plot3(x,y,z);
Previous slide
Next slide
Back to first slide
View graphic version