Python Numpy matrix.itemset()
在Numpy matrix.itemset()方法的帮助下,我们可以通过提供索引号和项目来设置一个给定矩阵中的项目。
语法: matrix.itemset(index, 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]]