[][src]Struct basic_dsp_vector::Statistics

#[repr(C)]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

sum: T

Sum of all values

count: usize

How many numbers have been considered for the stats

average: T

Average value

rms: T

Root-mean-square or rms over all values.

min: T

The smallest value.

min_index: usize

The index of the smallest value.

max: T

The largest value.

max_index: usize

The index of the largest value.

Trait Implementations

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

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

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

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

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

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

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

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

impl<T> StructuralPartialEq for Statistics<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Statistics<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Statistics<T> where
    T: Send
[src]

impl<T> Sync for Statistics<T> where
    T: Sync
[src]

impl<T> Unpin for Statistics<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Statistics<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.