コマンドウィンドウで時間微分するには・・・
古いコメントを表示
matlabのsymbolic math toolboxで時間微分したいときはどのようにコマンドを打ち込んだらいいのでしょうか? 例えば、rsinθ という関数を微分したときに, r dθ cosθ のように表現したいです。
1 件のコメント
Walter Roberson
2017 年 12 月 3 日
Approximate translation:
When you want to differentiate time with matlab 's symbolic math toolbox, how do you input a command? For example, when differentiating the function r sin θ, I want to express it as r d θ cos θ.
回答 (1 件)
Walter Roberson
2017 年 12 月 3 日
syms r theta
f(r,theta) = r * sin(theta)
diff(f, theta)
カテゴリ
ヘルプ センター および File Exchange で 微積分 についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!