如何用matlab解一个二元方程?
问题描述:
如何用matlab解一个二元方程?
答
syms x y
[x y]=solve('x+y=15','x^2-(y-3.2)^2=1','x','y')
上式中,引号中的式子可更改.