Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
numpy.moveaxis() function | Python
Next article icon

Let's discuss how to flatten a Matrix using NumPy in Python. By usingndarray.flatten() function we can flatten a matrix to one dimension in python.

Syntax:numpy_array.flatten(order='C')

  • order:'C' means to flatten in row-major.'F' means to flatten in column-major.'A' means to flatten in column-major order if a is Fortran contiguous in memory, row-major order otherwise.'K' means to flatten a in the order the elements occur in memory. The default is 'C'.

Return:Flattened 1-D matrix

array.flatten()

Example 1:

python3
# importing numpy as npimportnumpyasnp# declare matrix with npgfg=np.array([[2,3],[4,5]])# using array.flatten() methodflat_gfg=gfg.flatten()print(flat_gfg)

Output:

[2 3 4 5]

Example 2:

python3
# importing numpy as npimportnumpyasnp# declare matrix with npgfg=np.array([[6,9],[8,5],[18,21]])# using array.flatten() methodgfg.flatten()

Output:

array([ 6,  9,  8,  5, 18, 21])

Example 3:

python3
# importing numpy as npimportnumpyasnp# declare matrix with npgfg=np.array([[6,9,12],[8,5,2],[18,21,24]])# using array.flatten() methodflat_gfg=gfg.flatten(order='A')print(flat_gfg)

Output:

[ 6,  9, 12,  8,  5,  2, 18, 21, 24]

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp