[][src]Struct rand_distr::Dirichlet

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);

Methods

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: Clone> Clone for Dirichlet<N>[src]

impl<N: Debug> Debug for Dirichlet<N>[src]

impl<N: Float> Distribution<Vec<N>> for Dirichlet<N> where
    StandardNormal: Distribution<N>,
    Exp1: Distribution<N>,
    Open01: Distribution<N>, 
[src]

Auto Trait Implementations

impl<N> Unpin for Dirichlet<N> where
    N: Unpin

impl<N> Sync for Dirichlet<N> where
    N: Sync

impl<N> Send for Dirichlet<N> where
    N: Send

impl<N> UnwindSafe for Dirichlet<N> where
    N: UnwindSafe

impl<N> RefUnwindSafe for Dirichlet<N> where
    N: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,