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

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

1 commentaire

Walter Roberson
Walter Roberson le 3 Déc 2017
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 θ.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 3 Déc 2017

2 votes

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

Community Treasure Hunt

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

Start Hunting!