Tuesday, September 24, 2024
Google search engine
HomeLanguagesnumpy.fliplr() in Python

numpy.fliplr() in Python

numpy.fliplr(array) : Flip array(entries in each column) in left-right direction, shape preserved
Parameters :

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

Return :

Flipped array in left-right direction.




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


Output :

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

 [[4 5]
  [6 7]]]

Flipped array left-right : 
 [[[2 3]
  [0 1]]

 [[6 7]
  [4 5]]]

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

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

This article is contributed by Mohit Gupta_OMG 😀. If you like Lazyroar 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 Lazyroar 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.

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments