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!