Spiral cone in MATLAB (no built in function)
MATLAB CODE:
t=0:0.0001:30*pi;
x=t.*cos(t);
y=t.*sin(t);
plot3(x,y,t)
Check, how to form a spiral circle in Matlab:
t=0:0.0001:30*pi;
x=t.*cos(t);
y=t.*sin(t);
plot3(x,y,t)
This is a very simple code.
No comments