Enum stabilizer_stream::Detrend
source · pub enum Detrend {
None,
Midpoint,
Span,
Mean,
Linear,
}Expand description
Detrend method
Variants§
None
No detrending
Midpoint
Subtract the midpoint of each segment
Span
Remove linear interpolation between first and last item for each segment
Mean
Remove the mean of the segment
Linear
Remove the linear regression of each segment
Implementations§
Trait Implementations§
source§impl Ord for Detrend
impl Ord for Detrend
source§impl PartialEq for Detrend
impl PartialEq for Detrend
source§impl PartialOrd for Detrend
impl PartialOrd for Detrend
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Detrend
impl Eq for Detrend
impl StructuralEq for Detrend
impl StructuralPartialEq for Detrend
Auto Trait Implementations§
impl RefUnwindSafe for Detrend
impl Send for Detrend
impl Sync for Detrend
impl Unpin for Detrend
impl UnwindSafe for Detrend
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