Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Cone Syntax Code Error

3 Ansichten (letzte 30 Tage)
Aadil
Aadil am 27 Mär. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 !!!

Antworten (1)

Walter Roberson
Walter Roberson am 27 Mär. 2013
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])

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by