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

12 Ansichten (letzte 30 Tage)
Ahmed Eltayeb
Ahmed Eltayeb am 29 Sep. 2012
>> syms t;
>> x=sym('x(t)');
>> f=sin(x);
>> diff(f,t)
ans =
cos(x(t))*diff(x(t), t)
  1 Kommentar
Ahmed Eltayeb
Ahmed Eltayeb am 29 Sep. 2012
sorry my question is: how I can replace diff(x(t), t) with xdot ? thanks

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Oleg Komarov
Oleg Komarov am 29 Sep. 2012
syms t xdot;
x = sym('x(t)');
f = sin(x);
df = diff(f,t);
subs(df,'diff(x(t), t)',xdot)

Community Treasure Hunt

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

Start Hunting!

Translated by