How to get second derivative in symblolic toolbox?
1 次查看(过去 30 天)
显示 更早的评论
my expretion = cos(x*t^2)+x^2+4*t^3); how to get second derivative by t?
1 个评论
Andriy Kavetsky
2016-10-8
You should determine x and t as syms x t and use diff command diff(cos(x*t^2)+x^2+4*t^3),t,2); t, 2 means second derivative by t.
采纳的回答
Andriy Kavetsky
2016-10-8
You should determine x and t as syms x t and use diff command diff(cos(x*t^2)+x^2+4*t^3),t,2); t, 2 means second derivative by t.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!