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

Last Updated : 15 Apr, 2019

With the help of **Numpy matrix.getA1()** method, we can get the ndarray of one dimension as of our given matrix.

Syntax : matrix.getA1() Return : Return ndarray of size 1-D as given matrix

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

Python3 1=1 `

import the important module in python

import numpy as np

make matrix with numpy

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

applying matrix.getA1() method

geeks = gfg.getA1()

print(geeks)

`

Example #2 :

Python3 1=1 `

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.getA1() method

geeks = gfg.getA1()

print(geeks)

`

Output:

[1 2 3 4 5 6 7 8 9]