implicit function ,differeation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
here we have implicit function , caculate
1 comentario
Dyuman Joshi
el 5 de Feb. de 2023
What does this question have to do with MATLAB? Specify through words, no one here can read your mind.
Respuestas (1)
Torsten
el 5 de Feb. de 2023
syms x y(x) D2y
eqn = x + sin(y)/2 - y == 0
d2eqn = diff(eqn,x,2)
d2eqn_subs = subs(d2eqn,diff(y,x,2),D2y)
D2y = solve(d2eqn_subs,D2y)
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!