[][src]Trait light_curve_feature::NyquistFreq

pub trait NyquistFreq<T>: Send + Sync + DynClone + Debug {
    fn nyquist_freq(&self, t: &[T]) -> T;
}

Derive Nyquist frequency from time series

Nyquist frequency for unevenly time series is not well-defined. Here we define it as $\pi / \delta t$, where $\delta t$ is some typical interval between consequent observations

Required methods

fn nyquist_freq(&self, t: &[T]) -> T

Loading content...

Implementors

impl<T: Float> NyquistFreq<T> for AverageNyquistFreq[src]

impl<T: Float> NyquistFreq<T> for MedianNyquistFreq[src]

impl<T: Float> NyquistFreq<T> for QuantileNyquistFreq[src]

Loading content...