Python | Numpy matrix.item() (original) (raw)

Last Updated : 15 Apr, 2019

With the help of **Numpy matrix.item()** method, we can get the items from a given matrix by just providing index number and for multidimensional matrix we get the item by giving tuple of index value.

Syntax : matrix.item(index)

Return : Return item from given matrix

Example #1 :
In this example we can see that we are able to get the item with the help of method matrix.item() by providing index number.

import numpy as np

gfg = np.matrix( '[6, 1; 2, 3]' )

geeks = gfg.item(( 1 , 0 ))

print (geeks)

Example #2 :

import numpy as np

gfg = np.matrix( '[1, 2, 3; 4, 5, 6; 7, 8, 9]' )

geeks = gfg.item(( 2 , 0 ))

print (geeks)

Similar Reads