How can I find the mixed partial derivatives using Matlab?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Seda Kutay
el 3 de Dic. de 2016
Respondida: bio lim
el 3 de Dic. de 2016
For example, to find d^3f/dxdy^2 of x^4*sin(xy)??
Respuesta aceptada
bio lim
el 3 de Dic. de 2016
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 comentarios
Más respuestas (1)
John D'Errico
el 3 de Dic. de 2016
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 comentarios
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!