{"id":27543,"date":"2022-08-30T21:05:09","date_gmt":"2022-08-30T15:35:09","guid":{"rendered":"https:\/\/python-programs.com\/?p=27543"},"modified":"2022-08-30T21:05:09","modified_gmt":"2022-08-30T15:35:09","slug":"python-numpy-matrix-itemset","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-numpy-matrix-itemset\/","title":{"rendered":"Python Numpy matrix.itemset() Function"},"content":{"rendered":"

NumPy Library\u00a0<\/strong><\/p>\n

NumPy is a library in python that is created to work efficiently with arrays in python. It is fast, easy to learn, and provides efficient storage. It also provides a better way of handling data for the process. We can create an n-dimensional array in NumPy. To use NumPy simply have to import it into our program and then we can easily use the functionality of NumPy in our program.<\/p>\n

NumPy is a Python library that is frequently used for scientific and statistical analysis. NumPy arrays are grids of the same datatype\u2019s values.<\/p>\n

Numpy matrix.itemset() Function:<\/strong><\/p>\n

We can set the items in a given matrix using the matrix.itemset() method of the Numpy module by passing the index number and the item as arguments.<\/p>\n

Syntax:<\/strong><\/p>\n

 matrix.itemset(index, item)<\/pre>\n

Return Value:<\/strong><\/p>\n

A new matrix containing item is returned by the itemset() function.<\/p>\n

Numpy matrix.itemset() Function in Python<\/h2>\n

For 2-Dimensional (2D) Matrix\u00a0<\/strong><\/p>\n

Approach:<\/strong><\/p>\n