how to find all possible stationary points of a system of nonlinear equations
3 次查看(过去 30 天)
显示 更早的评论
I stumbled across this seemingly simple problem:
I tried using fsolve, but I can only pass in a single initial guess. Is there a smart way to do this?
0 个评论
回答(1 个)
Torsten
2022-11-15
编辑:Torsten
2022-11-16
Your equation could become stationary if
2*x + y = pi/2 or pi + pi/2 or 2*pi+pi/2 or ... or 6*pi+pi/2
3*x + 2*y = pi/3 or pi+pi/3 or 2*pi+pi/3 or ... or 10*pi+pi/3
So solve the 7*11 possible linear systems and select those solutions for x and y for which 0<=x<=2*pi, 0<=y<=2*pi.
I get 4 solutions.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!