probability 0.16.0

The package provides a probability-theory toolbox.
Documentation

Probability Package Documentation Build

The package provides a probability-theory toolbox.

Example

use probability::prelude::*;

let mut source = source::default();
let distribution = Uniform::new(0.0, 1.0);
let mut sampler = Independent(&distribution, &mut source);
let samples = sampler.take(10).collect::<Vec<_>>();

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.