[][src]Struct rand_distr::ChiSquared

pub struct ChiSquared<N> { /* fields omitted */ }

The chi-squared distribution χ²(k), where k is the degrees of freedom.

For k > 0 integral, this distribution is the sum of the squares of k independent standard normal random variables. For other k, this uses the equivalent characterisation χ²(k) = Gamma(k/2, 2).

Example

use rand_distr::{ChiSquared, Distribution};

let chi = ChiSquared::new(11.0).unwrap();
let v = chi.sample(&mut rand::thread_rng());
println!("{} is from a χ²(11) distribution", v)

Methods

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

pub fn new(k: N) -> Result<ChiSquared<N>, ChiSquaredError>[src]

Create a new chi-squared distribution with degrees-of-freedom k.

Trait Implementations

impl<N: Clone> Clone for ChiSquared<N>[src]

impl<N: Copy> Copy for ChiSquared<N>[src]

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

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

Auto Trait Implementations

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

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

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

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

impl<N> RefUnwindSafe for ChiSquared<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>,