Struct basic_dsp_vector::window_functions::TriangularWindow [] [src]

pub struct TriangularWindow;

A triangular window: https://en.wikipedia.org/wiki/Window_function#Triangular_window

Trait Implementations

impl<T> WindowFunction<T> for TriangularWindow where
    T: RealNumber
[src]

Indicates whether this function is symmetric around the y axis or not. Symmetry is defined as self.window(x) == self.window(-x). Read more

Calculates a point of the window function. Callers will ensure that n <= length.