Python numpy.random.rayleigh()

Python numpy.random.rayleigh()

numpy.random.rayleigh()方法的帮助下,我们可以从Rayleigh分布中获取随机样本并返回随机样本。

python中的numpy.random.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()

输出 :

Python numpy.random.rayleigh()

例子 #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()

输出 :

Python numpy.random.rayleigh()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程