numpy.fliplr (array): mirrored flip array (entries in each column) left-right, form retained
Options:
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:" , array) # fliplr: oz starts flip left-right print ( "Flipped array left-right:" , geek.fliplr (array)) |
table>
Output:
Original array: [[[0 1] [2 3]] [[4 5 ] [6 7]]] Flipped array left-right: [[[2 3] [0 1]] [[6 7] [4 5]]]
Links:
https://docs.scipy.org/doc /numpy-dev/reference/generated/numpy.fliplr.html#numpy.fliplr
Notes:
These codes will not work online ID. Please run them on your systems to see how they work.
,
This article is provided by Mohit Gupta_OMG
Shop
Learn programming in R: courses
$
Best Python online courses for 2022
$
Best laptop for Fortnite
$
Best laptop for Excel
$
Best laptop for Solidworks
$
Best laptop for Roblox
$
Best computer for crypto mining
$
Best laptop for Sims 4
$
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method