我知道如何使用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 ]
答案 0 :(得分:0)
欢呼声。