标签: matlab helix
Ingeneral我们使用下面的代码
t = 0:pi/50:20*pi; st = sin(t); ct = cos(t); plot3(st,ct,t)
使用此代码生成螺旋线。你能告诉我是否有任何命令,我可以看到旋转轴,如下图所示?
答案 0 :(得分:1)
由于旋转轴与z轴平行,您只需在那里画一条线:
hold on %# do not erase other plot plot([0;0],[0;0],[t(1);t(end)],'k')