pub enum NearestMethod {
Clipped,
Nearest,
}Expand description
Method used by cov_nearest for the correlation-matrix correction.
Variants§
Clipped
Single eigenvalue clip (corr_clipped); fast, larger distance.
Nearest
Iterative alternating projection (corr_nearest).
Trait Implementations§
Source§impl Clone for NearestMethod
impl Clone for NearestMethod
Source§fn clone(&self) -> NearestMethod
fn clone(&self) -> NearestMethod
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 moreimpl Copy for NearestMethod
Source§impl Debug for NearestMethod
impl Debug for NearestMethod
impl Eq for NearestMethod
Source§impl PartialEq for NearestMethod
impl PartialEq for NearestMethod
impl StructuralPartialEq for NearestMethod
Auto Trait Implementations§
impl Freeze for NearestMethod
impl RefUnwindSafe for NearestMethod
impl Send for NearestMethod
impl Sync for NearestMethod
impl Unpin for NearestMethod
impl UnsafeUnpin for NearestMethod
impl UnwindSafe for NearestMethod
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