Struct concrete_core::math::random::Gaussian[][src]

pub struct Gaussian<T: FloatingPoint> {
    pub std: T,
    pub mean: T,
}

A distribution type representing random sampling of floating point numbers, following a gaussian distribution.

Fields

std: T

The standard deviation of the distribution.

mean: T

The mean of the distribution.

Trait Implementations

impl<T: FloatingPoint> Distribution for Gaussian<T>[src]

impl RandomGenerable<Gaussian<f32>> for (f32, f32)[src]

impl RandomGenerable<Gaussian<f64>> for (f64, f64)[src]

impl<Torus> RandomGenerable<Gaussian<f64>> for (Torus, Torus) where
    Torus: UnsignedTorus
[src]

impl<Torus> RandomGenerable<Gaussian<f64>> for Torus where
    Torus: UnsignedTorus
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Gaussian<T> where
    T: RefUnwindSafe

impl<T> Send for Gaussian<T> where
    T: Send

impl<T> Sync for Gaussian<T> where
    T: Sync

impl<T> Unpin for Gaussian<T> where
    T: Unpin

impl<T> UnwindSafe for Gaussian<T> where
    T: 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<Input, Output> CastInto<Output> for Input where
    Output: CastFrom<Input>, 
[src]

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

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

impl<Torus> RandomGenerable<Gaussian<f64>> for Torus where
    Torus: UnsignedTorus
[src]

impl<Torus> RandomGenerable<Gaussian<f64>> for Torus where
    Torus: UnsignedTorus
[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.