Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Cone Syntax Code Error
조회 수: 3 (최근 30일)
이전 댓글 표시
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
답변 (1개)
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])
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!