[][src]Struct rstat::univariate::chi::Chi

pub struct Chi(_);

Methods

impl Chi[src]

pub fn new(dof: usize) -> Result<Chi, Error>[src]

pub fn new_unchecked(dof: usize) -> Chi[src]

pub fn k(&self) -> f64[src]

Trait Implementations

impl Clone for Chi[src]

impl ContinuousDistribution for Chi[src]

impl Copy for Chi[src]

impl Debug for Chi[src]

impl Display for Chi[src]

impl Distribution for Chi[src]

type Support = PositiveReals

Support of sample elements.

type Params = DOF<usize>

Parameter set uniquely defining the instance.

impl Entropy for Chi[src]

impl From<DOF<usize>> for Chi[src]

impl Modes for Chi[src]

impl Quantiles for Chi[src]

impl UnivariateMoments for Chi[src]

Auto Trait Implementations

impl RefUnwindSafe for Chi

impl Send for Chi

impl Sync for Chi

impl Unpin for Chi

impl UnwindSafe for Chi

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<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,