📜  Python| numpy matrix.item()

📅  最后修改于: 2022-05-13 01:54:45.379000             🧑  作者: Mango

Python| numpy matrix.item()

借助Numpy matrix.item()方法,我们可以通过提供索引号从给定矩阵中获取项目,对于多维矩阵,我们通过提供索引值的元组来获取项目。

示例 #1:
在这个例子中,我们可以看到我们可以通过提供索引号在方法matrix.item()的帮助下获取项目。

# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
          
# applying matrix.item() method
geeks = gfg.item((1, 0))
    
print(geeks)
输出:
2

示例 #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.item() method
geeks = gfg.item((2, 0))
    
print(geeks)
输出:
7