Derivative of the function
이전 댓글 표시
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
답변 (2개)
Wayne King
2011년 11월 23일
syms x t
u = 3*cos(t);
diff(x^(2*t)+u,t)
Jan
2011년 11월 23일
0 개 추천
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.:
카테고리
도움말 센터 및 File Exchange에서 Numeric Solvers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!