How can I find the mixed partial derivatives using Matlab?
조회 수: 5 (최근 30일)
이전 댓글 표시
For example, to find d^3f/dxdy^2 of x^4*sin(xy)??
채택된 답변
bio lim
2016년 12월 3일
syms x y
f = (x^4)*sin(x*y);
der = diff(f,x,y,y)
der =
- 6*x^5*sin(x*y) - x^6*y*cos(x*y)
댓글 수: 0
추가 답변 (1개)
John D'Errico
2016년 12월 3일
You would differentiate with respect to y twice, so the second derivative, and once with respect to x. Essentially two calls to diff.
help syms
help diff
1st semester calc?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!