📜  Python中的numpy.fliplr

📅  最后修改于: 2020-06-09 01:08:44             🧑  作者: Mango

numpy.fliplr(array) :左右方向翻转数组(每列中的条目),保留形状.

参数:

array:[array_like]输入数组,我们要翻转

返回:

左右方向翻转的阵列。 

# Python程序说明numpy.fliplr()方法 
  
import numpy as geek 
  
array = geek.arange(8).reshape((2,2,2)) 
print("原始数组 : \n", array) 
  
# fliplr:左右翻转 
print("\n左右翻转的数组 : \n", geek.fliplr(array)) 
 输出: 
原始数组:
 [[[0 1] 
  [2 3]] 

 [[4 5] 
  [6 7]]]

左右翻转的数组:
 [[[2 3] 
  [0 1]] 

 [[6 7] 
  [4 5 ]]]