随机采样系列1:线性同余发生器:生成伪随机数

参考资料:http://www.cnblogs.com/xkfz007/archive/2012/03/27/2420154.html


python脚本:

class Samples:
    def __init__(self):
        pass
    def rand(self, num, seed = 1):
        m = math.pow(2, 32)
        a = 214013
        c = 2531011
        i = 1
        x = np.zeros(num)
        x[0] = seed
        while(i < num):
            x[i] = (a * x[i-1] + c) % m
            i += 1
        return x
if __name__=='__main__':
    s = Samples()
    x00 = s.rand(1000)
    plt.hist(x00,200)
    plt.show()

样本的直方图如下:

随机采样系列1:线性同余发生器:生成伪随机数_第1张图片





你可能感兴趣的:(统计机器学习算法理论)