sympy.Matrix()方法
利用sympy.Matrix()方法,我们可以在sympy.Matrix()方法创建的矩阵中生成、重新排列、提取不同的行和列。
语法:sympy.Matrix()
返回:返回一个矩阵。
sympy.Matrix() 例# 1:
在本例中,我们可以看到,通过使用sympy.Matrix()方法,我们可以创建一个矩阵或提取行和列。
# Import all the methods from sympy
from sympy import *
# use the Matrix() method to create a matrix
gfg_val = Matrix([[1, sqrt(2)], [sqrt(2), 1]])
print(gfg_val)
Output :
Matrix([[1, sqrt(2)], [sqrt(2), 1]])
sympy.Matrix() 例# 2:
# Import all the methods from sympy
from sympy import *
# use the Matrix() method to create a matrix
gfg_val = Matrix([[1, 2], [2, 3], [3, 4]])
print(gfg_val)
Output :
Matrix([[1, 2], [2, 3], [3, 4]])