pub enum FactorCovariance {
Diagonal(Vec<f64>),
Dense(Matrix),
}Expand description
Factor covariance matrix (\Omega).
Variants§
Diagonal(Vec<f64>)
Diagonal factor covariance.
Dense(Matrix)
Dense symmetric positive-semidefinite factor covariance.
Implementations§
Trait Implementations§
Source§impl Clone for FactorCovariance
impl Clone for FactorCovariance
Source§fn clone(&self) -> FactorCovariance
fn clone(&self) -> FactorCovariance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FactorCovariance
impl Debug for FactorCovariance
Source§impl PartialEq for FactorCovariance
impl PartialEq for FactorCovariance
impl StructuralPartialEq for FactorCovariance
Auto Trait Implementations§
impl Freeze for FactorCovariance
impl RefUnwindSafe for FactorCovariance
impl Send for FactorCovariance
impl Sync for FactorCovariance
impl Unpin for FactorCovariance
impl UnsafeUnpin for FactorCovariance
impl UnwindSafe for FactorCovariance
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