How can I find the roots of a two variable function f(x,y)?
36 ビュー (過去 30 日間)
古いコメントを表示
How can I find the roots (x,y) of a function f(x,y)?
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 12 月 2 日
編集済み: Ameer Hamza
2020 年 12 月 2 日
Primarily are following two ways.
If you have the Symbolic toolbox, you can use solve(): https://www.mathworks.com/help/symbolic/solve.html or vpasolve(): https://www.mathworks.com/help/symbolic/vpasolve.html.
If you have the Optimization toolbox, use fsolve(): https://www.mathworks.com/help/optim/ug/fsolve.html
You can also try fmincon() and treat it as a optimization problem.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Nonlinear Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!