用法:
RandomState.permutation(x)
隨機置換序列,或返回置換範圍。
如果x是多維數組,則僅沿其第一個索引進行混洗。
參數: - x: : int 或 array_like
如果x是整數,則隨機排列
np.arange(x)
。如果x是一個數組,進行複製並隨機Shuffle[洗牌]元素。
返回值: - out: : ndarray
排列的序列或數組範圍。
例子:
>>> np.random.permutation(10) array([1, 7, 4, 3, 0, 9, 2, 5, 8, 6]) # random
>>> np.random.permutation([1, 4, 9, 12, 15]) array([15, 1, 9, 4, 12]) # random
>>> arr = np.arange(9).reshape((3, 3)) >>> np.random.permutation(arr) array([[6, 7, 8], # random [0, 1, 2], [3, 4, 5]])
注:本文由純淨天空篩選整理自 numpy.random.mtrand.RandomState.permutation。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。