flopscope.numpy.random.RandomState.beta
fnp.random.RandomState.beta(self, a, b, size=None)
Draw samples from a Beta distribution.
Adapted from NumPy docs np.random.RandomState.beta
Legacy beta sampler; cost = numel(output).
The Beta distribution is a special case of the Dirichlet distribution, and is related to the Gamma distribution. It has the probability distribution function
where the normalization, B, is the beta function,
It is often seen in Bayesian inference and order statistics.
New code should use the beta method of a Generator instance instead; please see the random-quick-start.
Parameters
- a:float or array_like of floats
Alpha, positive (>0).
- b:float or array_like of floats
Beta, positive (>0).
- size:int or tuple of ints, optional
Output shape. If the given shape is, e.g.,
(m, n, k), thenm * n * ksamples are drawn. If size isNone(default), a single value is returned ifaandbare both scalars. Otherwise,flops.broadcast(a, b).sizesamples are drawn.
Returns
- out:ndarray or scalar
Drawn samples from the parameterized beta distribution.
See also
- we.flops.random.Generator.beta which should be used for new code.