Python| sympy.Matrix() 方法
借助sympy.Matrix()方法,我们可以制作、重新排列、提取由 sympy.Matrix() 方法创建的矩阵中的不同行和列。
Syntax : sympy.Matrix()
Return : Return a matrix.
示例 #1:
在这个例子中,我们可以看到通过使用 sympy.Matrix() 方法,我们可以创建一个矩阵或者提取行和列。
Python3
# 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)
Python3
# 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, sqrt(2)], [sqrt(2), 1]])
示例 #2:
Python3
# 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]])