Python 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)
输出 :
[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]