[][src]Struct rstat::univariate::normal::Normal

pub struct Normal(_);

Methods

impl UvNormal[src]

pub fn new(mu: f64, sigma2: f64) -> Result<UvNormal, Error>[src]

pub fn new_unchecked(mu: f64, sigma2: f64) -> UvNormal[src]

pub fn standard() -> UvNormal[src]

pub fn z(&self, x: f64) -> f64[src]

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

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

Trait Implementations

impl Clone for UvNormal[src]

impl ContinuousDistribution for UvNormal[src]

impl Convolution<UvNormal> for UvNormal[src]

type Output = UvNormal

The resulting Distribution type.

impl Copy for UvNormal[src]

impl Debug for UvNormal[src]

impl Display for UvNormal[src]

impl Distribution for UvNormal[src]

type Support = Reals

Support of sample elements.

type Params = UvNormalParams

Parameter set uniquely defining the instance.

impl FisherInformation for UvNormal[src]

impl From<Params<f64, f64>> for UvNormal[src]

impl Likelihood for UvNormal[src]

impl MLE for UvNormal[src]

impl Modes for UvNormal[src]

impl Quantiles for UvNormal[src]

impl Score for UvNormal[src]

type Grad = UvNormalGrad

impl ShannonEntropy for UvNormal[src]

impl UnivariateMoments for UvNormal[src]

Auto Trait Implementations

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>,