Struct rv::data::MvGaussianSuffStat[][src]

pub struct MvGaussianSuffStat {
    pub n: usize,
    pub sum_x: DVector<f64>,
    pub sum_x_sq: DMatrix<f64>,
}

Fields

Methods

impl MvGaussianSuffStat
[src]

Trait Implementations

impl Debug for MvGaussianSuffStat
[src]

Formats the value using the given formatter. Read more

impl Clone for MvGaussianSuffStat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl SuffStat<DVector<f64>> for MvGaussianSuffStat
[src]

Returns the number of observations

Assimilate the datum x into the statistic

Remove the datum x from the statistic

Assimilate several observations

Forget several observations

Auto Trait Implementations