Hellab中的旋转轴在matlab中

时间:2017-02-27 10:55:21

标签: matlab helix

Ingeneral我们使用下面的代码

创建一个螺旋
t = 0:pi/50:20*pi;
st = sin(t);
ct = cos(t);
plot3(st,ct,t)

使用此代码生成螺旋线。你能告诉我是否有任何命令,我可以看到旋转轴,如下图所示?

enter image description here

1 个答案:

答案 0 :(得分:1)

由于旋转轴与z轴平行,您只需在那里画一条线:

hold on %# do not erase other plot
plot([0;0],[0;0],[t(1);t(end)],'k')