How to differentiate a differential function with a differential variable using symbolic toolbox?
2 ビュー (過去 30 日間)
古いコメントを表示
Harish Babu Kankanala
2013 年 6 月 7 日
回答済み: Kadiatou Youla
2019 年 12 月 12 日
%My matlab code
syms phi(t) t
f= sin(sym(phi(t)))
% Differentiation of above equation w.r.t t
f_dot=sym(diff(f,'t'))
% Differentiation of above equation w.r.t diff(phi(t),t)
x=diff(f_dot,diff(phi(t),t))
I'm getting error in the in the last step, when I'm trying to differentiat the f_dot equation with diff(diff(phi(t),t))
%matlab output
f_dot = cos(phi(t))*diff(phi(t), t)
Error using mupadmex
Error in MuPAD command: Invalid variable. [stdlib::diff]
Error in sym/diff (line 44)
R = mupadmex('symobj::diff', S.s, x.s, int2str(n));
Error in handle (line 7)
x=diff(f_dot,diff(phi(t), t)
0 件のコメント
採用された回答
Walter Roberson
2013 年 6 月 7 日
This is not possible in MuPAD. You will need to do a change of variables. Doing a naive substitution of variables can lead to incorrect results .
その他の回答 (1 件)
Kadiatou Youla
2019 年 12 月 12 日
i am the differentiate function in the matlab but i can not get it
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!