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 Lazyroar = gfg.copy() print (Lazyroar) |
[[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 Lazyroar = gfg.copy() print (Lazyroar) |
[[1 2 3] [4 5 6]]