Struct rand_distr::Beta
source · pub struct Beta<F>where
F: Float,
Open01: Distribution<F>,{ /* private fields */ }
Expand description
The Beta distribution with shape parameters alpha
and beta
.
Example
use rand_distr::{Distribution, Beta};
let beta = Beta::new(2.0, 5.0).unwrap();
let v = beta.sample(&mut rand::thread_rng());
println!("{} is from a Beta(2, 5) distribution", v);
Implementations§
Trait Implementations§
source§impl<F> Distribution<F> for Beta<F>where
F: Float,
Open01: Distribution<F>,
impl<F> Distribution<F> for Beta<F>where F: Float, Open01: 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 Beta<F>where F: Float + Copy, Open01: Distribution<F>,
Auto Trait Implementations§
impl<F> RefUnwindSafe for Beta<F>where F: RefUnwindSafe,
impl<F> Send for Beta<F>where F: Send,
impl<F> Sync for Beta<F>where F: Sync,
impl<F> Unpin for Beta<F>where F: Unpin,
impl<F> UnwindSafe for Beta<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