我在命令窗口
上复制并粘贴了matlab文档中的代码plot(plot::Cylinder(a, [0, 0, a], [0, 0, 3 - a],
a = 1 .. 2))
plot(plot::Cylinder(a, [0, 0, a], [0, 0, 3 - a],
|
Error: Unexpected MATLAB operator.
为什么?
那么如何在半径为1的matlab中绘制一个圆柱体,其轴线从点(1,0,0)到(1,0,3)? 我使用过代码:
[x,y,z]=cylinder(1);
x1=x+1;
surf(x1,y,z)
但它只考虑从点(1,0,0)到(1,0,1)的轴 如何绘制圆柱体并指定其轴长度的任意范围?