Info

此问题已关闭。 请重新打开它进行编辑或回答。

Cone Syntax Code Error

1 次查看(过去 30 天)
Aadil
Aadil 2013-3-27
关闭: MATLAB Answer Bot 2021-8-20
Hello,
I need to draw a cone,I am trying to use the syntax below
plot(plot::Cone(6, [0, 0, 0], [0, 0, 10])):
But is it giving me the following message
plot(plot::Cone(6, [0, 0, 0], [0, 0, 10])):
|
Error: Unexpected MATLAB operator.
Please Help, Thanks !!!

回答(1 个)

Walter Roberson
Walter Roberson 2013-3-27
plot::Cone is not a MATLAB routine: it is a MuPAD routine. You need to invoke MuPAD to get at it.
feval(symengine, 'plot::Cone', 6, [0 0 0], [0 0 0])

此问题已关闭。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by