Trait signal_processing::Rms

source ·
pub trait Rms<'a, T>: Lists<T>
where T: ComplexFloat,
{ // Required method fn rms(&'a self) -> Self::RowsMapped<T::Real>; }

Required Methods§

source

fn rms(&'a self) -> Self::RowsMapped<T::Real>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, T, L> Rms<'a, T> for L
where L: Lists<T, RowView<'a>: List<T>> + 'a, T: ComplexFloat + 'a,