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

Function random_standard_normal_fill

numpy/random/src/distributions/distributions.c:172–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170}
171
172void random_standard_normal_fill(bitgen_t *bitgen_state, npy_intp cnt, double *out) {
173 npy_intp i;
174 for (i = 0; i < cnt; i++) {
175 out[i] = random_standard_normal(bitgen_state);
176 }
177}
178
179float random_standard_normal_f(bitgen_t *bitgen_state) {
180 uint32_t r;

Callers

nothing calls this directly

Calls 1

random_standard_normalFunction · 0.85

Tested by

no test coverage detected