Struct rand_distr::Dirichlet [−][src]
pub struct Dirichlet<N> { /* fields omitted */ }
The dirichelet distribution Dirichlet(alpha)
.
The Dirichlet distribution is a family of continuous multivariate probability distributions parameterized by a vector alpha of positive reals. It is a multivariate generalization of the beta distribution.
Example
use rand::prelude::*; use rand_distr::Dirichlet; let dirichlet = Dirichlet::new(vec![1.0, 2.0, 3.0]).unwrap(); let samples = dirichlet.sample(&mut rand::thread_rng()); println!("{:?} is from a Dirichlet([1.0, 2.0, 3.0]) distribution", samples);
Implementations
impl<N: Float> Dirichlet<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> Dirichlet<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]pub fn new<V: Into<Vec<N>>>(alpha: V) -> Result<Dirichlet<N>, Error>
[src]
Construct a new Dirichlet
with the given alpha parameter alpha
.
Requires alpha.len() >= 2
.
pub fn new_with_size(alpha: N, size: usize) -> Result<Dirichlet<N>, Error>
[src]
Construct a new Dirichlet
with the given shape parameter alpha
and size
.
Requires size >= 2
.
Trait Implementations
impl<N: Float> Distribution<Vec<N, Global>> for Dirichlet<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> Distribution<Vec<N, Global>> for Dirichlet<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]Auto Trait Implementations
impl<N> RefUnwindSafe for Dirichlet<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for Dirichlet<N> where
N: Send,
N: Send,
impl<N> Sync for Dirichlet<N> where
N: Sync,
N: Sync,
impl<N> Unpin for Dirichlet<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for Dirichlet<N> where
N: UnwindSafe,
N: UnwindSafe,