当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.Matrix.row()用法及代码示例


借助sympy.Matrix.row()方法,我们可以提取矩阵的行。

用法: sympy.Matrix.row()
返回: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]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.Matrix.row() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。