PHP 8.4.0 RC4 available for testing

stats_rand_gen_beta

(PECL stats >= 1.0.0)

stats_rand_gen_betaGénère une déviation aléatoire de la distribution beta

Description

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

Renvoie une déviation aléatoire de la distribution beta avec les paramètre A et B. La densité de la beta est x^(a-1) * (1-x)^(b-1) / B(a, b) pour 0 < x <. Méthode R. C. H. Cheng.

Liste de paramètres

a

Le paramètre de forme de la distribution beta

b

Le paramètre de forme de la distribution beta

Valeurs de retour

Une déviation aléatoire

add a note

User Contributed Notes

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