sympy.det()方法
利用sympy.det()方法,我们可以利用sympy.det()方法求出矩阵的行列式。
语法:sympy.det()
返回:返回矩阵的行列式。
sympy.det()方法 例# 1:
在本例中,我们可以看到,利用sympy.det()方法,我们可以求出矩阵的行列式。
# import sympy
from sympy import *
# Use sympy.det() method
mat = Matrix([[1, 0, 1], [2, -1, 3], [4, 3, 2]])
d = mat.det()
print(d)
Output :
-1
sympy.det()方法 例# 2:
# import sympy
from sympy import *
# Use sympy.det() method
mat = Matrix([[1, 5, 1], [12, -1, 31], [4, 33, 2]])
d = mat.det()
print(d)
Output :
-125