Open In App

Python | sympy.zeros() method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.zeros() method, we can create a matrix having dimension nxm and filled with zeros by using sympy.zeros() method.

Syntax : sympy.zeros()
Return : Return a zero matrix.

Example #1 :
In this example, we can see that by using sympy.zero() method, we are able to create the zero matrix having dimension nxn all filled with zeros, where nxm will be pass as a parameter.




# import sympy
from sympy import *
  
# Use sympy.zero() method
mat = zeros(3, 4)
   
print(mat)


Output :

Matrix([
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]])

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.zero() method
mat = zeros(2, 4)
   
print(mat)


Output :

Matrix([[0, 0, 0, 0],
[0, 0, 0, 0]])


Last Updated : 29 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads