Open In App

numpy.flip() in Python

Last Updated : 08 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The numpy.flip() function reverses the order of array elements along the specified axis, preserving the shape of the array.
 

Syntax: numpy.flip(array, axis)


Parameters : 

array : [array_like]Array to be input 
axis  : [integer]axis along which array 
        is reversed.


Returns : 

reversed array with shape preserved
Python
# Python Program illustrating
# numpy.flip() method

import numpy as geek

array = geek.arange(8).reshape((2,2,2))
print("Original array : \n", array)

print("Flipped array : \n", geek.flip(array, 0)) 

Output : 

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

 [[4 5]
  [6 7]]]

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

 [[0, 1]
  [2, 3]]]

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

 


Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy