numpy.linalg.solve() 函数

numpy.linalg.solve() 函数以矩阵形式给出线性方程的解。

考虑下面的线性方程 −

x + y + z = 6

2y + 5z = -4

2x + 5y - z = 27

They can be represented in the matrix form as −

$$\begin{bmatrix}1 & 1 & 1 \\0 & 2 & 5 \\2 & 5 & -1\end{bmatrix} \begin{bmatrix}x \\y \\z \end{bmatrix} = \begin{bmatrix}6 \\-4 \\27 \end{bmatrix}$$

如果这三个矩阵被称为A、XB,则等式变为 −

A*X = B  

Or

X = A-1B 

❮ NumPy 线性代数