Python Numpy matrix.item()

Python Numpy matrix.item()

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

语法: matrix.item(index)

返回:从给定的矩阵中返回项目

例子#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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程