Python| numpy matrix.copy()
借助Numpy matrix.copy()
方法,我们可以复制矩阵中存在的所有数据元素。如果我们更改副本中的任何数据元素,它不会影响原始矩阵。
Syntax : matrix.copy()
Return : Return copy of matrix
示例 #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]]