Python 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)
输出 :
Matrix([[1, sqrt(2)], [sqrt(2), 1]])
例子#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)
输出 :
Matrix([[1, 2], [2, 3], [3, 4]])