标签:python code get 范围 false 索引 numpy dex als
def getRandomIndex(n, x):
# 索引范围为[0, n),随机选x个不重复,注意replace=False才是不重复,replace=True则有可能重复
index = np.random.choice(np.arange(n), size=x, replace=False)
return index
getRandomIndex(12, 12)
Out[13]: array([11, 6, 10, 8, 0, 2, 9, 3, 4, 7, 1, 5])
标签:python code get 范围 false 索引 numpy dex als
原文地址:https://www.cnblogs.com/douzujun/p/13179464.html