コマンドウィンドウで時間微分するには・・・

matlabのsymbolic math toolboxで時間微分したいときはどのようにコマンドを打ち込んだらいいのでしょうか? 例えば、rsinθ という関数を微分したときに, r dθ cosθ のように表現したいです。

1 件のコメント

Walter Roberson
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
Walter Roberson 2017 年 12 月 3 日

2 投票

syms r theta
f(r,theta) = r * sin(theta)
diff(f, theta)

カテゴリ

質問済み:

2017 年 12 月 2 日

回答済み:

2017 年 12 月 3 日

Community Treasure Hunt

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

Start Hunting!