Python| sympy.Matrix.col() 方法
借助sympy.Matrix().col()
方法,我们可以提取矩阵的列。
Syntax : sympy.Matrix().col()
Return : 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]])