📅  最后修改于: 2020-06-09 01:11:14             🧑  作者: Mango
numpy.flipud(array) : 上下方向翻转数组(每列中的条目),保留形状 .
参数:
array:[array_like]输入数组,我们要翻转
返回:
上下方向翻转的阵列。
# Python程序说明numpy.flipud()方法
import numpy as geek
array = geek.arange(8).reshape((2,2,2))
print("原始数组 : \n", array)
# flipud : means flip up-down
print("\n翻转后的数组 : \n", geek.flipud(array))
输出:
原始数组:
[[[0 1]
[2 3]]
[[4 5]
[6 7]]]
翻转后的数组:
[[[4 5]
[6 7]]
[[0 1]
[2 3]]