📜  Python中的 numpy.flip()

📅  最后修改于: 2022-05-13 01:54:18.379000             🧑  作者: Mango

Python中的 numpy.flip()

numpy.flip()函数沿指定轴反转数组元素的顺序,保留数组的形状。

Syntax: numpy.flip(array, axis)

参数 :

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

返回:

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))


输出 :

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

 [[4 5]
  [6 7]]]

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

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

参考 :
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.flip.html#numpy.flip
笔记 :
这些代码不会在在线 IDE 上运行。因此,请在您的系统上运行它们以探索其工作原理。