Filter löschen
Filter löschen

numerical derivation of function ?

2 Ansichten (letzte 30 Tage)
Waleed new
Waleed new am 20 Jun. 2018
Kommentiert: Waleed new am 20 Jun. 2018
how to derivate this function in matlab :
func = q*sin(phi)+r*cos(teta)
where q , r , teta ,phi are functions , how to find the derivative expression like this :
deriv_func =qdot*sin(phi)+phidot*cos(phi)*q +rdot*cos(teta)-tetadot*sin(teta)*r

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 20 Jun. 2018
You cannot do that numerically. Numeric differentiation can never return a symbolic result.
With the symbolic toolbox, you would do something like,
syms q(t) r(t) phi(t) teta(t)
func = q*sin(phi)+r*cos(teta)
diff(func, t)
to get
cos(teta(t))*diff(r(t), t) + sin(phi(t))*diff(q(t), t) + cos(phi(t))*q(t)*diff(phi(t), t) - sin(teta(t))*r(t)*diff(teta(t), t)
You indicated that q r phi teta were functions, but you did not indicate what they were functions of, so I assumed they were all functions of t.
  1 Kommentar
Waleed new
Waleed new am 20 Jun. 2018
thank you Walter Roberson .yes they are all functions of t .it works

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by