现在有两个非线性方程组
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개)

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

태그

질문:

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!