pub enum ScaleEst {
Mad,
Huber(HuberScale),
}Expand description
The scale estimator used to standardize residuals between IRLS steps.
Variants§
Mad
Median absolute deviation about zero (scale_est='mad'), the default.
Huber(HuberScale)
Huber’s proposal-2 scale (scale_est=HuberScale()).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScaleEst
impl RefUnwindSafe for ScaleEst
impl Send for ScaleEst
impl Sync for ScaleEst
impl Unpin for ScaleEst
impl UnsafeUnpin for ScaleEst
impl UnwindSafe for ScaleEst
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