implicit function ,differeation
1 次查看(过去 30 天)
显示 更早的评论
here we have implicit function , caculate
1 个评论
Dyuman Joshi
2023-2-5
What does this question have to do with MATLAB? Specify through words, no one here can read your mind.
回答(1 个)
Torsten
2023-2-5
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 个评论
另请参阅
类别
在 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!