how I can replace diff(x(t), t) with xdot ?

12 ビュー (過去 30 日間)
Ahmed Eltayeb
Ahmed Eltayeb 2012 年 9 月 29 日
>> syms t;
>> x=sym('x(t)');
>> f=sin(x);
>> diff(f,t)
ans =
cos(x(t))*diff(x(t), t)
  1 件のコメント
Ahmed Eltayeb
Ahmed Eltayeb 2012 年 9 月 29 日
sorry my question is: how I can replace diff(x(t), t) with xdot ? thanks

サインインしてコメントする。

回答 (1 件)

Oleg Komarov
Oleg Komarov 2012 年 9 月 29 日
syms t xdot;
x = sym('x(t)');
f = sin(x);
df = diff(f,t);
subs(df,'diff(x(t), t)',xdot)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by