我想知道如何在 Python 中使用 SymPy 创建矩阵并计算其逆矩阵?
例如,对于这个符号矩阵:
如果您的问题是:如何在 sympy 中计算矩阵 M 的逆,那么:
M_inverse = M.inv()
至于如何创建矩阵:
M = Matrix(2,3, [1,2,3,4,5,6])
将为您提供以下 2X3 矩阵:
1 2 3
4 5 6
请参阅:http ://docs.sympy.org/0.7.2/modules/matrices/matrices.html
这是我们如何计算符号矩阵的逆的示例(从问题中取一个):
import sympy as sym
# Not necessary but gives nice-looking latex output
# More info at: http://docs.sympy.org/latest/tutorial/printing.html
sym.init_printing()
sx, sy, rho = sym.symbols('sigma_x sigma_y rho')
matrix = sym.Matrix([[sx ** 2, rho * sx * sy],
[rho * sx * sy, sy ** 2]])