Trait basic_dsp::Stats [−][src]
pub trait Stats<T> { fn empty() -> Self; fn empty_vec(len: usize) -> ArrayVec<Self, {_: usize}>; fn invalid() -> Self; fn merge(stats: &[Self]) -> Self; fn merge_cols(
stats: &[ArrayVec<Self, {_: usize}>]
) -> ArrayVec<Self, {_: usize}>; fn add(&mut self, elem: T, index: usize); }
Expand description
Operations on statistics.
Required methods
Creates a vector of empty statistics structs.
Merges several vectors of statistics into one vector.
Implementors
pub fn merge_cols(
stats: &[ArrayVec<Statistics<Complex<T>>, {_: usize}>]
) -> ArrayVec<Statistics<Complex<T>>, {_: usize}>
[src]pub fn merge_cols(
stats: &[ArrayVec<Statistics<T>, {_: usize}>]
) -> ArrayVec<Statistics<T>, {_: usize}>
[src]