How to simply differentiate equations?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have defined an equation V(x,t), can i store the second derivitive of this equation in a new equation?
0 comentarios
Respuesta aceptada
Wayne King
el 24 de Abr. de 2013
Editada: Wayne King
el 24 de Abr. de 2013
Do you have the Symbolic Toolbox?
syms x t;
v = cos(x)*sin(t);
d2v_dx2 = diff(v,'x',2);
d2v_dx2 has class sym
2 comentarios
Wayne King
el 24 de Abr. de 2013
Editada: Wayne King
el 24 de Abr. de 2013
use subs() for example, to leave t alone and put in pi for the x variable
subs(d2v_dx2,[x,t],[pi,t])
or to substitute for both variables
subs(d2v_dx2,[x,t],[pi,pi/2])
Más respuestas (0)
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!