Creates a normally distributed data source.
(seed: [u32; 4])
| 236 | |
| 237 | /// Creates a normally distributed data source. |
| 238 | pub fn normal_builder(seed: [u32; 4]) -> NormalData { |
| 239 | NormalData { |
| 240 | rng: XorShiftRng::from_seed(seed), |
| 241 | normal: vec![] |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | // ---------------------------------------------------------------------------- |
| 246 |
no outgoing calls