pub struct Momentum { /* private fields */ }Expand description
Momentum calculates difference between current
value and n-th value back, where n = length
Parameters
Has a single parameter length: PeriodType
length should be > 0
Input type
Input type is ValueType
Output type
Output type is ValueType
Examples
use yata::prelude::*;
use yata::methods::Momentum;
let mut change = Momentum::new(3, &1.0).unwrap(); // a.k.a. Change => let mut change = Change::new(3);
change.next(&1.0);
change.next(&2.0);
assert_eq!(change.next(&3.0), 2.0);
assert_eq!(change.next(&4.0), 3.0);
assert_eq!(change.next(&2.0), 0.0);At length=1 Momentum is the same as Derivative with length=1
use yata::prelude::*;
use yata::methods::Momentum;
use yata::methods::Derivative;
let mut change = Momentum::new(1, &1.0).unwrap();
let mut derivative = Derivative::new(1, &1.0).unwrap();
change.next(&1.0); derivative.next(&1.0);
change.next(&2.0); derivative.next(&2.0);
assert_eq!(change.next(&3.0), derivative.next(&3.0));
assert_eq!(change.next(&4.0), derivative.next(&4.0));
assert_eq!(change.next(&2.0), derivative.next(&2.0));Performance
O(1)
See Also
Trait Implementations
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
type Params = PeriodType
type Params = PeriodType
Method parameters
Static method for creating an instance of the method with given parameters and initial value (simply first input value)
Generates next output value based on the given input value
Creates an instance of the method with given parameters and initial value, wrapped by historical data holder
Creates an instance of the method with given parameters and initial value, wrapped by last produced value holder
Returns memory size of the method (size, align)
Iterates the Method over the given inputs slice and returns Vec of output values. Read more
Applies method to the sequence in-place.
Creates new Method instance and iterates it over the given inputs slice and returns Vec of output values. Read more
Creates new Method instance and applies it to the sequence.
Creates a function from the Method instance
Auto Trait Implementations
impl RefUnwindSafe for Momentum
impl UnwindSafe for Momentum
Blanket Implementations
Mutably borrows from an owned value. Read more