Trait signal_processing::analysis::FWHM

source ·
pub trait FWHM<'a, T, X, const XX: bool>: Matrix<T>
where T: Float, X: MaybeList<T>,
{ // Required method fn fwhm(&'a self, x: X, at: FullWidthAt<T>) -> Self::RowsMapped<T>; }

Required Methods§

source

fn fwhm(&'a self, x: X, at: FullWidthAt<T>) -> Self::RowsMapped<T>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, T, X, Y> FWHM<'a, T, X, true> for Y
where T: Float + SubAssign, Y: Matrix<T>, X: List<T, Length = Y::Width>, [(); { _ }]:,

source§

impl<'a, T, Y, X> FWHM<'a, T, (), false> for Y
where T: Float + SubAssign + 'a, Y: Matrix<T, RowView<'a>: List<T, Mapped<T> = X>> + FWHM<'a, T, X, true> + 'a, X: List<T>,