Struct yata::methods::MedianAbsDev
source · pub struct MedianAbsDev { /* private fields */ }Expand description
Median absolute deviation of specified length for timeseries of type ValueType
Parameters
Has a single parameter length: PeriodType
length should be > 1
Input type
Input type is ValueType
Output type
Output type is ValueType
Performance
O(length)
Implementations§
Trait Implementations§
source§impl Clone for MedianAbsDev
impl Clone for MedianAbsDev
source§fn clone(&self) -> MedianAbsDev
fn clone(&self) -> MedianAbsDev
Returns a copy of the value. Read more
1.0.0 · 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 MedianAbsDev
impl Debug for MedianAbsDev
source§impl<'de> Deserialize<'de> for MedianAbsDev
impl<'de> Deserialize<'de> for MedianAbsDev
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for MedianAbsDev
impl Method for MedianAbsDev
§type Output = <MedianAbsDev as Method>::Input
type Output = <MedianAbsDev as Method>::Input
Output value type
source§fn new(length: Self::Params, value: &Self::Input) -> Result<Self, Error>
fn new(length: Self::Params, value: &Self::Input) -> Result<Self, Error>
Static method for creating an instance of the method with given
parameters and initial value (simply first input value)source§fn next(&mut self, value: &Self::Input) -> Self::Output
fn next(&mut self, value: &Self::Input) -> Self::Output
Generates next output value based on the given input
valuesource§fn with_history(
parameters: Self::Params,
initial_value: &Self::Input
) -> Result<WithHistory<Self, Self::Output>, Error>
fn with_history( parameters: Self::Params, initial_value: &Self::Input ) -> Result<WithHistory<Self, Self::Output>, Error>
Creates an instance of the method with given
parameters and initial value, wrapped by historical data holdersource§fn with_last_value(
parameters: Self::Params,
initial_value: &Self::Input
) -> Result<WithLastValue<Self, Self::Output>, Error>
fn with_last_value( parameters: Self::Params, initial_value: &Self::Input ) -> Result<WithLastValue<Self, Self::Output>, Error>
Creates an instance of the method with given
parameters and initial value, wrapped by last produced value holdersource§fn memsize(&self) -> (usize, usize)where
Self: Sized,
fn memsize(&self) -> (usize, usize)where
Self: Sized,
👎Deprecated
Returns memory size of the method
(size, align)source§fn new_over<S>(
parameters: Self::Params,
inputs: S
) -> Result<Vec<Self::Output>, Error>
fn new_over<S>( parameters: Self::Params, inputs: S ) -> Result<Vec<Self::Output>, Error>
Creates new
Method instance and iterates it over the given inputs slice and returns Vec of output values. Read moresource§fn new_apply<T, S>(
parameters: Self::Params,
sequence: &mut S
) -> Result<(), Error>
fn new_apply<T, S>( parameters: Self::Params, sequence: &mut S ) -> Result<(), Error>
Creates new
Method instance and applies it to the sequence.source§impl Peekable<<MedianAbsDev as Method>::Output> for MedianAbsDev
impl Peekable<<MedianAbsDev as Method>::Output> for MedianAbsDev
Auto Trait Implementations§
impl RefUnwindSafe for MedianAbsDev
impl Send for MedianAbsDev
impl Sync for MedianAbsDev
impl Unpin for MedianAbsDev
impl UnwindSafe for MedianAbsDev
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