sympy.Matrix.row()方法
利用sympy.Matrix.row()方法,我们可以提取出矩阵的行。
语法:sympy.Matrix.row()
返回:返回矩阵的一行。
sympy.Matrix.row()方法 例# 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)
Output :
[2, 1]
sympy.Matrix.row()方法 例# 2:
from sympy import *
# use the row() method for matrix
gfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).row(2)
print(gfg_val)
Output :
[23, 45]