Function aus::generate_window_rectangular
source · pub fn generate_window_rectangular(window_length: usize) -> Vec<f64>Expand description
Creates a rectangular window of size window_length.
§Example
use aus::generate_window_rectangular;
let window_length = 22050;
let window = generate_window_rectangular(window_length);