Python | Numpy matrix.getfield()

With the help of Numpy matrix.getfield() method, we can get the field matrix that means field is a view of the matrix with a given data-type of the same size as of our given matrix.

Syntax : matrix.getfield()

Return : Return field matrix

Example #1 :
In this example we can see that we are able to get the field matrix with the help of method matrix.getfield().




# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
          
# applying matrix.getfield() method
zambiatek = gfg.getfield(int)
    
print(zambiatek)


Output:

[[6 1]
 [2 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.getfield() method
zambiatek = gfg.getfield(int)
    
print(zambiatek)


Output:

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

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button