[][src]Struct filter::stats::GaussianDistribution

pub struct GaussianDistribution<F: Float> {
    pub mean: F,
    pub var: F,
}

Represents a gaussian distribution with mean and variance..

Fields

mean: F

Mean of the distribution.

var: F

Variance of the distribution.

Methods

impl<F: Float> GaussianDistribution<F>[src]

pub fn new(mean: F, var: F) -> Self[src]

Create a new Gaussian distribution.

Trait Implementations

impl<F: Debug + Float> Debug for GaussianDistribution<F>[src]

impl<F: Float> Add<GaussianDistribution<F>> for GaussianDistribution<F>[src]

type Output = GaussianDistribution<F>

The resulting type after applying the + operator.

impl<F: Float> Mul<GaussianDistribution<F>> for GaussianDistribution<F>[src]

type Output = GaussianDistribution<F>

The resulting type after applying the * operator.

Auto Trait Implementations

impl<F> Sync for GaussianDistribution<F> where
    F: Sync

impl<F> Unpin for GaussianDistribution<F> where
    F: Unpin

impl<F> Send for GaussianDistribution<F> where
    F: Send

impl<F> UnwindSafe for GaussianDistribution<F> where
    F: UnwindSafe

impl<F> RefUnwindSafe for GaussianDistribution<F> where
    F: RefUnwindSafe

Blanket Implementations

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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