pub fn rect<T: Float + One>(len: usize) -> Vec<T>
A rectangular window of a given length.
Example usage:
use futuredsp::windows; let taps: Vec<f32> = windows::rect(64);