PHP 8.3.4 Released!

stats_rand_gen_beta

(PECL stats >= 1.0.0)

stats_rand_gen_betaGenerates a random deviate from the beta distribution

Descrição

stats_rand_gen_beta(float $a, float $b): float

Returns a random deviate from the beta distribution with parameters A and B. The density of the beta is x^(a-1) * (1-x)^(b-1) / B(a,b) for 0 < x <. Method R. C. H. Cheng.

Parâmetros

a

The shape parameter of the beta distribution

b

The shape parameter of the beta distribution

Valor Retornado

A random deviate

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top