Probability Version Status

The package provides a probability-theory toolbox.

Documentation

Example

```rust 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::>(); ```

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.