uniform#
Module for sampling uniformly from an interval.
Functions#
Returns the value of inverse CDF of the uniform distribution from |
|
Returns a random floating point number between |
- uniform_inverse_cdf(l, u, p, prec)#
Returns the value of inverse CDF of the uniform distribution from
l
tou
.- Parameters:
l (float) – Lower bound for the uniform distribution.
u (float) – Upper bound for the uniform distribution.
p (tmlt.core.utils.arb.Arb) – Probability to compute the inverse CDF at.
prec (int) – Precision to compute the CDF with.
- Return type:
- uniform(lower, upper, step_size=63)#
Returns a random floating point number between
lower
andupper
.