Open In App

Python | Numpy matrix.itemset()

Last Updated : 15 Apr, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of Numpy matrix.itemset() method, we can set the items in a given matrix by just providing index number and item.

Syntax : matrix.itemset(index, item)

Return : Return new matrix having item

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




# 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)


Output:

[[6 1]
 [5 3]]

Example #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)


Output:

[[ 1  2  3]
 [ 4  5  6]
 [10  8  9]]

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads