Struct yata::methods::Integral

source ·
pub struct Integral { /* private fields */ }
Expand description

Integrates (summarizes) ValueType values for the given window size length

§Parameters

Has a single parameter length: PeriodType

If length == 0, then integrates since the beginning of timeseries

§Input type

Input type is ValueType

§Output type

Output type is ValueType

§Examples

use yata::prelude::*;
use yata::methods::Integral;

// Integrates over last 3 values
let mut integral = Integral::new(3, &1.0).unwrap();

integral.next(&1.0);
integral.next(&2.0);
assert_eq!(integral.next(&3.0), 6.0); // 1 + 2 + 3
assert_eq!(integral.next(&4.0), 9.0); // 2 + 3 + 4
assert_eq!(integral.next(&5.0), 12.0); // 3 + 4 + 5
use yata::prelude::*;
use yata::methods::Integral;

// Integrates since the beginning
let mut integral = Integral::new(0, &1.0).unwrap(); // same as Integral::default()

integral.next(&1.0);
integral.next(&2.0);
assert_eq!(integral.next(&3.0), 6.0); // 1 + 2 + 3
assert_eq!(integral.next(&4.0), 10.0); // 1 + 2 + 3 + 4
assert_eq!(integral.next(&5.0), 15.0); // 1 + 2 + 3 + 4 + 5

§Integral is opposite method for Derivative

use yata::prelude::*;
use yata::methods::{Integral, Derivative};

let s = [1.0, 2.0, 3.0, 3.0, 2.5, 3.5, 5.0];
let mut integral = Integral::default();
let mut derivative = Derivative::new(1, &s[0]).unwrap();

(&s).iter().for_each(|v| {
    let integration_constant = s[0];
    let der = derivative.next(v);
    let integr = integral.next(&der) + integration_constant;

    assert_eq!(integr, *v);
});

§Performance

O(1)

§See also

Derivative

Trait Implementations§

source§

impl Clone for Integral

source§

fn clone(&self) -> Integral

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Integral

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Integral

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Integral

source§

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 Integral

§

type Params = u8

Method parameters
§

type Input = f64

Input value type
§

type Output = <Integral as Method>::Input

Output value type
source§

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

Generates next output value based on the given input value
source§

fn with_history( parameters: Self::Params, initial_value: &Self::Input ) -> Result<WithHistory<Self, Self::Output>, Error>
where Self: Sized, Self::Output: Debug + Clone,

Creates an instance of the method with given parameters and initial value, wrapped by historical data holder
source§

fn with_last_value( parameters: Self::Params, initial_value: &Self::Input ) -> Result<WithLastValue<Self, Self::Output>, Error>
where Self: Sized, Self::Output: Debug + Clone,

Creates an instance of the method with given parameters and initial value, wrapped by last produced value holder
source§

fn name(&self) -> &str

Returns a name of the method
source§

fn memsize(&self) -> (usize, usize)
where Self: Sized,

👎Deprecated
Returns memory size of the method (size, align)
source§

fn over<S>(&mut self, inputs: S) -> Vec<Self::Output>
where S: Sequence<Self::Input>, Self::Input: Sized, Self: Sized,

Iterates the Method over the given inputs slice and returns Vec of output values. Read more
source§

fn apply<T, S>(&mut self, sequence: &mut S)
where S: Sequence<T> + AsMut<[T]> + ?Sized, Self: Method<Input = T, Output = T> + Sized,

Applies method to the sequence in-place.
source§

fn new_over<S>( parameters: Self::Params, inputs: S ) -> Result<Vec<Self::Output>, Error>
where S: Sequence<Self::Input>, Self::Input: Sized, Self: Sized,

Creates new Method instance and iterates it over the given inputs slice and returns Vec of output values. Read more
source§

fn new_apply<T, S>( parameters: Self::Params, sequence: &mut S ) -> Result<(), Error>
where S: Sequence<T> + AsMut<[T]>, Self: Method<Input = T, Output = T> + Sized,

Creates new Method instance and applies it to the sequence.
source§

fn into_fn<'a>( self ) -> Box<dyn FnMut(&'a <Self as Method>::Input) -> <Self as Method>::Output>
where Self: Sized + 'static, Self::Input: 'static,

Creates a function from the Method instance
source§

fn new_fn( params: Self::Params, initial_value: &Self::Input ) -> Result<Box<dyn FnMut(&'_ <Self as Method>::Input) -> <Self as Method>::Output>, Error>
where Self: Sized + 'static,

Creates new function based on the method
source§

impl Peekable<<Integral as Method>::Output> for Integral

source§

fn peek(&self) -> <Self as Method>::Output

Peeks the very last value, produced by method or indicator
source§

impl Serialize for Integral

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,