标签:bsp int pre port orm numpy normal and std
import numpy as np
result = np.random.normal(0.5, 1, 100) # 均值为0.5,方差为1
print(result)
print(np.mean(result), " ", np.var(result), " ", np.std(result))
# 均值、方差、标准差
标签:bsp int pre port orm numpy normal and std
原文地址:https://www.cnblogs.com/judes/p/12627069.html