[][src]Struct sprs_rand::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);

Implementations

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

pub fn new<V>(alpha: V) -> Result<Dirichlet<N>, Error> where
    V: Into<Vec<N>>, 
[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 for Dirichlet<N> where
    N: Clone
[src]

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

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

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,