Struct rand_distr::Weibull [−][src]
pub struct Weibull<N> { /* fields omitted */ }
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
impl<N: Float> Weibull<N> where
OpenClosed01: Distribution<N>,
[src]
impl<N: Float> Weibull<N> where
OpenClosed01: Distribution<N>,
[src]Trait Implementations
impl<N: Float> Distribution<N> for Weibull<N> where
OpenClosed01: Distribution<N>,
[src]
impl<N: Float> Distribution<N> for Weibull<N> where
OpenClosed01: Distribution<N>,
[src]impl<N: Copy> Copy for Weibull<N>
[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for Weibull<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for Weibull<N> where
N: Send,
N: Send,
impl<N> Sync for Weibull<N> where
N: Sync,
N: Sync,
impl<N> Unpin for Weibull<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for Weibull<N> where
N: UnwindSafe,
N: UnwindSafe,