Open In App

Python | Numpy matrix.copy()

Last Updated : 12 Apr, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of Numpy matrix.copy() method, we can make a copy of all the data elements that is present in matrix. If we change any data element in the copy, it will not affect the original matrix.

Syntax : matrix.copy()

Return : Return copy of matrix

Example #1 :
In this example we can see that with the help of matrix.copy() method we are making the copy of an elements in different matrix.




# import the important module in python
import numpy as np
         
# make matrix with numpy
gfg = np.matrix('[1, 2, 3]')
         
# applying matrix.copy() method
geeks = gfg.copy()
   
print(geeks)


Output:

[[1 2 3]]

Example #2 :




# import the important module in python
import numpy as np
         
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6]')
         
# applying matrix.copy() method
geeks = gfg.copy()
   
print(geeks)


Output:

[[1 2 3]
 [4 5 6]]

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads