Python| sympy.Matrix.row() 方法
借助sympy.Matrix.row()
方法,我们可以提取矩阵的行。
Syntax : sympy.Matrix.row()
Return : Return the row of a matrix.
示例 #1:
在给定的示例中,我们可以看到
sympy.Matrix().row()
方法用于提取矩阵的行。 # Import all the methods from sympy
from sympy import *
# use the row() method for matrix
gfg_val = Matrix([[1, 2], [2, 1]]).row(1)
print(gfg_val)
输出 :
[2, 1]
示例 #2:
from sympy import *
# use the row() method for matrix
gfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).row(2)
print(gfg_val)
输出 :
[23, 45]