Wednesday, May 6, 2026
HomeLanguagesPython | sympy.Matrix() method

Python | sympy.Matrix() method

With the help of sympy.Matrix() method, we can make, rearrange, extract the different rows and columns in a matrix which is created by sympy.Matrix() method.

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

Example #1 :
In this example, we can see that by using sympy.Matrix() method, we can create a matrix or can extract the rows and columns. 

Python3




# Import all the methods from sympy
from sympy import *
  
# use the Matrix() method to create a matrix
gfg_val = Matrix([[1, sqrt(2)], [sqrt(2), 1]])
  
print(gfg_val)


Output :

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

Example #2 :

Python3




# Import all the methods from sympy
from sympy import *
  
# use the Matrix() method to create a matrix
gfg_val = Matrix([[1, 2], [2, 3], [3, 4]])
  
print(gfg_val)


Output :

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

 

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

3 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6891 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12105 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS