Python| numpy matrix.itemset()
借助Numpy matrix.itemset()
方法,我们可以通过提供索引号和项目来设置给定矩阵中的项目。
Syntax : matrix.itemset(index, item)
Return : Return new matrix having item
示例 #1:
在这个例子中,我们可以看到我们可以通过提供索引号和项目,借助方法matrix.itemset()
来设置项目。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
# applying matrix.itemset() method
gfg.itemset((1, 0), 5)
print(gfg)
输出:
[[6 1]
[5 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; 7, 8, 9]')
# applying matrix.itemset() method
gfg.itemset((2, 0), 10)
print(gfg)
输出:
[[ 1 2 3]
[ 4 5 6]
[10 8 9]]