Tuesday, October 7, 2025
HomeLanguagesPython | sympy.Matrix.row_del() method

Python | sympy.Matrix.row_del() method

With the help of sympy.Matrix.row_del() method, we can delete the rows of the matrix.

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

Example #1 :

In the given example we can see that the sympy.Matrix.row_del() method is used to delete the row of a matrix and return a new matrix.




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


Output :

Matrix([1, 2])

Example #2 :




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


Output :

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

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

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS