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