Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Cone Syntax Code Error

3 ビュー (過去 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