Python numpy.random.rayleigh()
在numpy.random.rayleigh()方法的帮助下,我们可以从Rayleigh分布中获取随机样本并返回随机样本。
雷利分布函数
语法 : numpy.random.rayleigh(scale=1.0, size=None)
返回 :以numpy数组的形式返回随机样本。
例子 #1 :
在这个例子中,我们可以看到,通过使用numpy.random.rayleigh()方法,我们能够得到rayleigh分布并返回随机样本。
# import numpy
import numpy as np
import matplotlib.pyplot as plt
# Using rayleigh() method
gfg = np.random.rayleigh(3.4, 50000)
plt.figure()
plt.hist(gfg, bins = 50, density = True)
plt.show()
输出 :
例子 #2 :
# import numpy
import numpy as np
import matplotlib.pyplot as plt
# Using rayleigh() method
gfg = np.random.rayleigh(2 * np.sqrt(np.pi), 100000)
plt.figure()
plt.hist(gfg, bins = 50, density = True)
plt.show()
输出 :