Struct basic_dsp_vector::Statistics [] [src]

pub struct Statistics<T> {
    pub sum: T,
    pub count: usize,
    pub average: T,
    pub rms: T,
    pub min: T,
    pub min_index: usize,
    pub max: T,
    pub max_index: usize,
}

Statistics about numeric data

Fields

Trait Implementations

impl<T: Debug> Debug for Statistics<T>
[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for Statistics<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Clone> Clone for Statistics<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for Statistics<T>
[src]

impl<T> Stats<T> for Statistics<T> where T: RealNumber
[src]

impl<T> Stats<Complex<T>> for Statistics<Complex<T>> where T: RealNumber
[src]