Struct rand_distr::Weibull
source · pub struct Weibull<F>where
F: Float,
OpenClosed01: Distribution<F>,{ /* private fields */ }
Expand description
Samples floating-point numbers according to the Weibull distribution
Example
use rand::prelude::*;
use rand_distr::Weibull;
let val: f64 = thread_rng().sample(Weibull::new(1., 10.).unwrap());
println!("{}", val);
Implementations§
Trait Implementations§
source§impl<F> Clone for Weibull<F>where
F: Float + Clone,
OpenClosed01: Distribution<F>,
impl<F> Clone for Weibull<F>where
F: Float + Clone,
OpenClosed01: Distribution<F>,
source§impl<F> Debug for Weibull<F>where
F: Float + Debug,
OpenClosed01: Distribution<F>,
impl<F> Debug for Weibull<F>where
F: Float + Debug,
OpenClosed01: Distribution<F>,
source§impl<F> Distribution<F> for Weibull<F>where
F: Float,
OpenClosed01: Distribution<F>,
impl<F> Distribution<F> for Weibull<F>where
F: Float,
OpenClosed01: Distribution<F>,
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
Generate a random value of
T
, using rng
as the source of randomness.