Python | Numpy numpy.matrix.A() (original) (raw)

Last Updated : 08 Apr, 2019

With the help of **Numpy numpy.matrix.A()** method, we can get the same matrix as self. It means through this method we can get the identical matrix.

Syntax : numpy.matrix.A()

Return : Return self matrix

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

import numpy as np

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

geeks = gfg.getA()

print (geeks)

Example #2 :

import numpy as np

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

geeks = gfg.getA()

print (geeks)

Output:

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

Similar Reads