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


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


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

用法: sympy.Matrix().col()
返回:Return the col of a matrix.

范例1:
在给定的示例中,我们可以看到sympy.Matrix.col()方法用于提取矩阵的列。


# Import all the methods from sympy 
from sympy import *
  
# use the col() method for matrix 
gfg_val = Matrix([[1, 2], [2, 1]]).col(1) 
  
print(gfg_val)

输出:

Matrix([[2], [1]])

范例2:

from sympy import *
  
# use the col() method for matrix 
gfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).col(0) 
  
print(gfg_val)

输出:

Matrix([[1], [2], [23]])



相关用法


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