MATLAB中非线性方程组求解!。

现在有两个非线性方程组
ax+by+cxy=d;
mx+ny+pxy=q;
a,b,c,d,m,n,p,q都是已知的数
请问matlab怎么求解x,y?

 採用された回答

yesok
yesok 2022 年 11 月 24 日

0 投票

>> syms x y a b c d m n p q
>> [x,y] = solve(a*x+b*y+c*x*y-d, m*x+n*y+p*x*y-q)

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2022 年 11 月 24 日

回答済み:

2022 年 11 月 24 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!