pub struct Gaussian<T> { /* private fields */ }
Expand description
Contains all parameters to describe a Gaussian distribution, i.e. the mean and the variance.
Given a set of samples the parameters can be estimated for all types for which the trait Gaussian is implemented.
Implementations§
Trait Implementations§
Source§impl GaussianFunctions<f32> for Gaussian<f32>
impl GaussianFunctions<f32> for Gaussian<f32>
Auto Trait Implementations§
impl<T> Freeze for Gaussian<T>where
T: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more