Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Cone Syntax Code Error
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 !!!
0 comentarios
Respuestas (1)
Walter Roberson
el 27 de Mzo. de 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])
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!