Friday, February 6, 2026
HomeLanguagesPython | sympy.Matrix.col_del() method

Python | sympy.Matrix.col_del() method

With the help of sympy.Matrix.col_del() method, we can delete the columns of the matrix.

Syntax : sympy.Matrix().col_del()
Return : Return a new matrix.

Example #1 :
In the given example we can see that the sympy.Matrix.col_del() method is used to delete the column of a matrix and return a new matrix.




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


Output :

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

Example #2 :




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


Output :

Matrix([[2], [3], [45]])

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

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS