Function hertz::hertz_range [] [src]

pub fn hertz_range<T>(sample_rate: T, window_size: T) -> Range<T> where
    T: Div<T, Output = T> + From<u16> + Clone

frequency range that can be modeled when taking the short time fourier transform of a signal with sample_rate with a sliding window of window_sizew. equivalent to rayleigh(sample_rate, window_size)..nyquist(sample_rate) increase the window size to increase the lower frequency increase the sample rate to increase the upper frequency