フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Create MATLAB Functions from MuPAD Expressions(R2013a)

1 回表示 (過去 30 日間)
Mohamed Elkomy
Mohamed Elkomy 2014 年 3 月 15 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by