Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
解が正になるように、matlab で非線形方程式系を解きたいと考えています。未知の変数に対して正の解が必要であることを matlab で指定できますか? どのように?
はい、次のようなsymsを使用して変数を定義できます。
syms x y positive
そして、これらの変数は正であることが保証されています。変数に対する制約を定義した後に解を見つける方法については、fsolveを参照してください。