Python Numpy matrix.copy()
在Numpy matrix.copy()方法的帮助下,我们可以对矩阵中的所有数据元素进行复制。如果我们在副本中改变任何数据元素,都不会影响到原矩阵。
语法: matrix.copy()
返回:返回矩阵的副本
例子#1 :
在这个例子中,我们可以看到,在matrix.copy()方法的帮助下,我们正在复制不同矩阵中的元素。
# 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)
输出:
[[1 2 3]]
例子#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)
输出:
[[1 2 3]
[4 5 6]]