Trait light_curve_feature::NyquistFreq[][src]

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[src]

Loading content...

Implementors

Loading content...