在python中使用random.gauss高斯隨機數(shù)生成器生成高斯函數(shù),具體方法如下:
import random
def trunc_gauss(mu, sigma, bottom, top): //使用隨機庫中的函數(shù),其中包括高斯隨機數(shù)生成器(random.gauss)
a = random.gauss(mu,sigma)) //指定平均值(mu)和方差(sigma),以及所需范圍的頂部和底部
while (bottom <= a <= top) == False:
a = random.gauss(mu,sigma)) //在函數(shù)內(nèi)部根據(jù)高斯分布生成一個初始隨機數(shù)
return a