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.impl<F> Copy for Weibull<F>where F: Float + Copy, OpenClosed01: Distribution<F>,
Auto Trait Implementations§
impl<F> RefUnwindSafe for Weibull<F>where F: RefUnwindSafe,
impl<F> Send for Weibull<F>where F: Send,
impl<F> Sync for Weibull<F>where F: Sync,
impl<F> Unpin for Weibull<F>where F: Unpin,
impl<F> UnwindSafe for Weibull<F>where F: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more