标签: matlab plot matlab-figure
在Matlab网站上,代码创建了一个两端都被is given覆盖的圆柱体:
plot(plot::Cylinder(1, [-3, 0, 0], [3, 0, 0]);
但这适用于Matlab R2013a。
此代码在Matlab R2008a中不起作用,因为它不接受'::'。我怎样才能创建这样的情节?
答案 0 :(得分:2)
plot::cylinder是来自MuPad的函数。这就像枫木代码。当matlab生成他的圆柱体时就像this。对于MuPad信息,请转到here
plot::cylinder
MuPad
修改强>
能够用基础创建圆柱体。
输入Matlab命令窗口:
mupad
这将打开MuPad界面。在您只需要执行柱面命令后:
plot(plot::Cylinder(1,[-3,0,0],[3,0,0]));