pub struct Mad {
pub consistency: f64,
}Expand description
MAD: s = 1.4826 · median(|rᵢ − median(r)|). The constant 1.4826 = 1/Φ⁻¹(¾)
makes it consistent for σ at the Gaussian model.
Fields§
§consistency: f64Consistency constant (default 1.4826).
Trait Implementations§
impl Copy for Mad
Auto Trait Implementations§
impl Freeze for Mad
impl RefUnwindSafe for Mad
impl Send for Mad
impl Sync for Mad
impl Unpin for Mad
impl UnsafeUnpin for Mad
impl UnwindSafe for Mad
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