Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Create MATLAB Functions from MuPAD Expressions(R2013a)
조회 수: 1 (최근 30일)
이전 댓글 표시
I tried Running the Example in the following link http://www.mathworks.com/help/symbolic/create-matlab-functions-from-mupad-expressions.html
I create a mupad file that contains the following:
x := r*sin(a)*cos(b):
y := r*sin(a)*sin(b):
z := r*cos(b):
S := matrix([x, y, z]):
then I create a handle to it from Matlab command line nb1=mupad('file.mn')
I then call : S = getVar(nb1,'S')
then h = matlabFunction(S)
when I should get :
h =
@(a,b,r)[r.*cos(b).*sin(a);r.*sin(a).*sin(b);r.*cos(b)]
I get :
h =
@(S)S
can any one help?
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!