Error using mupadmex " MuPAD "
9 ビュー (過去 30 日間)
古いコメントを表示
this is matlab verrrry simple program but i have verrrry simple problem :) this is the error Error using mupadmex Error in MuPAD command: DOUBLE cannot convert the input expression into a double array.
If the input expression contains a symbolic variable, use the VPA function instead.
Error in sym/double (line 936)
Xstr = mupadmex('symobj::double', S.s, 0);
Error in vib (line 10)
nx=double( subs(x,'t',t));
and that is the program
vo=input('vo=');
xo=input('xo=');
wn=input('wn=');
syms t;
syms wn;
a1=xo;
a2=vo+(wn*xo);
x=(a1+a2*t)*exp(-wn*t);
t=0:0.5:1;
nx=double( subs(x,'t',t));
figure(1);
plot(t,nx);
what can i do to solve this program
0 件のコメント
採用された回答
bym
2013 年 4 月 19 日
Don't define wn as symbolic
vo=input('vo=');
xo=input('xo=');
wn=input('wn=');
syms t;
%syms wn; comment this line
a1=xo;
a2=vo+(wn*xo);
x=(a1+a2*t)*exp(-wn*t);
t=0:0.5:1;
nx=double( subs(x,'t',t));
figure(1);
plot(t,nx);
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!