[][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> Stats<T> for Statistics<T> where
    T: RealNumber
[src]

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

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

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

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

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

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

impl<T> Send for Statistics<T> where
    T: Send

impl<T> Sync for Statistics<T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T