pub struct ExactEllipticalParams { /* private fields */ }Implementations§
source§impl ExactEllipticalParams
impl ExactEllipticalParams
sourcepub fn new(mu: Vec<f64>, lsigma: PPTRF) -> Result<Self, DistributionError>
pub fn new(mu: Vec<f64>, lsigma: PPTRF) -> Result<Self, DistributionError>
Multivariate normal
L is needed as second argument under decomposition Sigma = L * L^T
l_sigma = sigma.pptrf()?;
pub fn mu(&self) -> &Vec<f64>
pub fn lsigma(&self) -> &PPTRF
pub fn eject(self) -> (Vec<f64>, PPTRF)
Trait Implementations§
source§impl Clone for ExactEllipticalParams
impl Clone for ExactEllipticalParams
source§fn clone(&self) -> ExactEllipticalParams
fn clone(&self) -> ExactEllipticalParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more