我知道如何使用 equationstomatrix 函数将线性方程转换为矩阵
syms x y z;
[A, b] = equationsToMatrix([x + y - 2*z == 0, x + y + z == 1, 2*y - z + 5 == 0], [x, y, z])
%solution of the equation set
A =
[ 1, 1, -2]
[ 1, 1, 1]
[ 0, 2, -1]
b =
0
1
-5
不幸的是,equationsToMatrix
不能用于非线性方程。如果我想将多个非线性方程转换为矩阵,有没有办法做到这一点?例如,我有三个方程:
x^2 + y^2+ 1=0,
x - y + 1=0,
x^2+xy-2=0,
我想得到以下结果
A=
[1, 1, 1, 0, 0, 0 ]
[0, 0, 1, 1, -1, 0 ]
[1, 0, -2, 0, 0, 1 ]