Thursday, December 11, 2025
HomeLanguagesPython | Numpy matrix.getA1()

Python | Numpy matrix.getA1()

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




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


Output:

[6 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.getA1() method
neveropen = gfg.getA1()
    
print(neveropen)


Output:

[1 2 3 4 5 6 7 8 9]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32442 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12025 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7196 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS