| 211 | } |
| 212 | |
| 213 | void 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 | |
| 220 | double random_standard_gamma(bitgen_t *bitgen_state, |
| 221 | double shape) { |
nothing calls this directly
no test coverage detected