Python | Numpy matrix.copy() (original) (raw)

Last Updated : 12 Apr, 2019

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 numpy as np

gfg = np.matrix( '[1, 2, 3]' )

geeks = gfg.copy()

print (geeks)

Example #2 :

import numpy as np

gfg = np.matrix( '[1, 2, 3; 4, 5, 6]' )

geeks = gfg.copy()

print (geeks)

Output:

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

Similar Reads