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

Function random_standard_normal_fill_f

numpy/random/src/distributions/distributions.c:213–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213void random_standard_normal_fill_f(bitgen_t *bitgen_state, npy_intp cnt, float *out) {
214 npy_intp i;
215 for (i = 0; i < cnt; i++) {
216 out[i] = random_standard_normal_f(bitgen_state);
217 }
218}
219
220double random_standard_gamma(bitgen_t *bitgen_state,
221 double shape) {

Callers

nothing calls this directly

Calls 1

random_standard_normal_fFunction · 0.85

Tested by

no test coverage detected