Saturday, November 22, 2025
HomeLanguagesPython | sympy.Matrix.col() method

Python | sympy.Matrix.col() method

With the help of sympy.Matrix().col() method, we can extract the columns of the matrix.

Syntax : sympy.Matrix().col()
Return : Return the col of a matrix.

Example #1 :
In the given example we can see that the sympy.Matrix.col() method is used to extract the columns of a matrix.




# 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)


Output :

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

Example #2 :




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


Output :

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6849 POSTS0 COMMENTS