本文简要介绍 python 语言中 numpy.random.Generator.uniform
的用法。
用法:
random.Generator.uniform(low=0.0, high=1.0, size=None)
从均匀分布中抽取样本。
样本均匀分布在半开区间
[low, high)
(包括低,但不包括高)。换句话说,给定区间内的任何值都同样可能被uniform
绘制。- low: float 或 数组 的浮点数,可选
输出区间的下边界。生成的所有值都将大于或等于低。默认值为 0。
- high: 浮点数或类似数组的浮点数
输出区间的上边界。生成的所有值都将小于高。由于等式
low + (high-low) * random_sample()
中的浮点舍入,上限可能包含在返回的浮点数组中。高 - 低必须是非负数。默认值为 1.0。- size: int 或整数元组,可选
输出形状。例如,如果给定的形状是
(m, n, k)
,则绘制m * n * k
样本。如果 size 为None
(默认),如果low
和high
都是标量,则返回单个值。否则,将抽取np.broadcast(low, high).size
样本。
- out: ndarray 或标量
从参数化均匀分布中抽取样本。
参数:
返回:
注意:
均匀分布的概率密度函数为
区间内的任何地方
[a, b)
,其他地方为零。当
high
==low
时,将返回low
的值。例子:
从分布中抽取样本:
>>> s = np.random.default_rng().uniform(-1,0,1000)
所有值都在给定的区间内:
>>> np.all(s >= -1) True >>> np.all(s < 0) True
显示样本的直方图以及概率密度函数:
>>> import matplotlib.pyplot as plt >>> count, bins, ignored = plt.hist(s, 15, density=True) >>> plt.plot(bins, np.ones_like(bins), linewidth=2, color='r') >>> plt.show()
相关用法
- Python numpy Generator.multivariate_normal用法及代码示例
- Python numpy Generator.standard_normal用法及代码示例
- Python numpy Generator.bytes用法及代码示例
- Python numpy Generator.shuffle用法及代码示例
- Python numpy Generator.choice用法及代码示例
- Python numpy Generator.random用法及代码示例
- Python numpy Generator.logseries用法及代码示例
- Python numpy Generator.standard_t用法及代码示例
- Python numpy Generator.standard_cauchy用法及代码示例
- Python numpy Generator.normal用法及代码示例
- Python numpy Generator.poisson用法及代码示例
- Python numpy Generator.power用法及代码示例
- Python numpy Generator.geometric用法及代码示例
- Python numpy Generator.laplace用法及代码示例
- Python numpy Generator.vonmises用法及代码示例
- Python numpy Generator.noncentral_f用法及代码示例
- Python numpy Generator.gamma用法及代码示例
- Python numpy Generator.multivariate_hypergeometric用法及代码示例
- Python numpy Generator.weibull用法及代码示例
- Python numpy Generator.gumbel用法及代码示例
- Python numpy Generator.pareto用法及代码示例
- Python numpy Generator.noncentral_chisquare用法及代码示例
- Python numpy Generator.negative_binomial用法及代码示例
- Python numpy Generator.binomial用法及代码示例
- Python numpy Generator.standard_exponential用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.random.Generator.uniform。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。