Derivative of the function
Show older comments
Hi all, I have question about derivation of function. I have function f=x^2(t)+u(t) and need derivation through t, not x or u. In which way it is possible to solve by Matlab ? ode or myfun function ? Or an easier way ? (I am solving variance method)
Thanks
Answers (2)
Wayne King
on 23 Nov 2011
syms x t
u = 3*cos(t);
diff(x^(2*t)+u,t)
Jan
on 23 Nov 2011
0 votes
Do you look for a symbolical or numerical solution? For a numerical solution, do you want a rough discrete estimation as by gradient or a more expensive adaptive method like e.g.:
1 Comment
Maros Maros
on 23 Nov 2011
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!