标签:rfs float refresh alert invisible clean name mina shai
import numpy as np
#所有的值是0-1
np.random.rand(3,2)
返回随机的整数 ,左闭右开
np.random.randint(10,size=(5,4))#表示0-10
返回一个随机值
np.random.random_sample()
np.random.rand()
np.random.randint(0,10,3)#0-10返回3个数,但是不包含10
mu,sigma=0,0.1#高斯分布
np.random.normal(mu,sigma,10)
设置随机精度
np.set_printoptions(precision=2)
mu,sigma=0,0.1#高斯分布
np.random.normal(mu,sigma,10)
tang_arrary=np.arange(10)
tang_arrary
np.random.shuffle(tang_arrary)#洗牌
tang_arrary
np.random.seed(100)
mu,sigma=0,0.1
np.random.normal(mu,sigma,10)
标签:rfs float refresh alert invisible clean name mina shai
原文地址:https://www.cnblogs.com/AI-robort/p/11627184.html