permutation()的使用
2019-07-05 本文已影响0人
Xindolia_Ring
permutation()的使用
- 语法格式:
numpy.random.permutation(x)
随机排列一个序列,或者数组。
如果x是多维数组,则沿其第一个坐标轴的索引随机排列数组。
-
参数:
x : 整数或者数组
如果x是整数,则随机排列np.arange(x)。若果x是数组,对其复制之后再搅乱其元素。 -
返回:
out : 排列的序列或数组
np.random.permutation(10)
输出:
array([1, 7, 4, 3, 0, 9, 2, 5, 8, 6])
np.random.permutation([1, 4, 9, 12, 15])
输出:
array([15, 1, 9, 4, 12])
arr = np.arange(9).reshape((3, 3))
np.random.permutation(arr)
输出:
array([[6, 7, 8],
[0, 1, 2],
[3, 4, 5]])
作者:yangsong95
来源:CSDN
原文:https://blog.csdn.net/yangsong95/article/details/82502812
版权声明:本文为博主原创文章,转载请附上博文链接!