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

Function random_standard_uniform_f

numpy/random/src/distributions/distributions.c:24–26  ·  view source on GitHub ↗

Random generators for external use */

Source from the content-addressed store, hash-verified

22
23/* Random generators for external use */
24float random_standard_uniform_f(bitgen_t *bitgen_state) {
25 return next_float(bitgen_state);
26}
27
28double random_standard_uniform(bitgen_t *bitgen_state) {
29 return next_double(bitgen_state);

Callers

nothing calls this directly

Calls 1

next_floatFunction · 0.85

Tested by

no test coverage detected