MCPcopy Create free account
hub / github.com/numpy/numpy / random_noncentral_f

Function random_noncentral_f

numpy/random/src/distributions/distributions.c:833–837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

831}
832
833double random_noncentral_f(bitgen_t *bitgen_state, double dfnum, double dfden,
834 double nonc) {
835 double t = random_noncentral_chisquare(bitgen_state, dfnum, nonc) * dfden;
836 return t / (random_chisquare(bitgen_state, dfden) * dfnum);
837}
838
839double random_wald(bitgen_t *bitgen_state, double mean, double scale) {
840 double U, X, Y;

Callers

nothing calls this directly

Calls 2

random_chisquareFunction · 0.85

Tested by

no test coverage detected