Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

numpy.flipud() in Python

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The numpy.flipud() function flips the array(entries in each column) in up-down direction, shape preserved. Syntax: 

numpy.flipud(array)

Parameters : 

array : [array_like]Input array, we want to flip

Return : 

Flipped array in up-down direction.

Python




# Python Program illustrating
# numpy.flipud() method
 
import numpy as geek
 
array = geek.arange(8).reshape((2,2,2))
print("Original array : \n", array)
 
# flipud : means flip up-down
print("\nFlipped array : \n", geek.flipud(array))

Output : 

Original array : 
 [[[0 1]
  [2 3]]

 [[4 5]
  [6 7]]]

Flipped array : 
 [[[4 5]
  [6 7]]

 [[0 1]
  [2 3]]]

References : https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.flipud.html#numpy.flipud 

Note : These codes won’t run on online IDE’s. So please, run them on your systems to explore the working.

This article is contributed by Mohit Gupta_OMG 😀. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

My Personal Notes arrow_drop_up
Last Updated : 28 Mar, 2022
Like Article
Save Article
Similar Reads
Related Tutorials