Python中的 random.vonmisesvariate()函数
random
模块用于在Python中生成随机数。实际上不是随机的,而是用于生成伪随机数。这意味着可以确定这些随机生成的数字。
随机.vonmisesvariate()
vonmisesvariate()
是random
模块的内置方法。它用于返回具有 von Mises 分布或循环正态分布的随机浮点数。
Syntax : random.vonmisesvariate(mu, kappa)
Parameters :
mu : mean angle, expressed in radians between 0 and 2*pi
kappa : concentration parameter, greater than or equal to zero
Returns : a random von Mises distribution floating number
示例 1:
# import the random module
import random
# determining the values of the parameters
mu = 0
kappa = 4
# using the vonmisesvariate() method
print(random.vonmisesvariate(mu, kappa))
输出 :
0.9429600175580171
示例 2:我们可以多次生成数字并绘制图表以观察 von Mises 分布。
# import the required libraries
import random
import matplotlib.pyplot as plt
# store the random numbers in a
# list
nums = []
mu = 0
kappa = 4
for i in range(100):
temp = random.vonmisesvariate(mu, kappa)
nums.append(temp)
# plotting a graph
plt.plot(nums)
plt.show()
输出 :
示例 3:我们可以创建一个直方图来观察 von Mises 分布的密度。
# import the required libraries
import random
import matplotlib.pyplot as plt
# store the random numbers in a list
nums = []
mu = 0
kappa = 4
for i in range(10000):
temp = random.vonmisesvariate(mu, kappa)
nums.append(temp)
# plotting a graph
plt.hist(nums, bins = 200)
plt.show()
输出 :