pub struct Beta<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>
impl<F> Distribution<F> for Beta<F>
impl<F> Copy for Beta<F>
Auto Trait Implementations§
impl<F> Freeze for Beta<F>where
F: Freeze,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.