hannWindow function

Float32List hannWindow(
  1. int length, {
  2. bool periodic = true,
})

Implementation

Float32List hannWindow(int length, {bool periodic = true}) =>
    generateWindow(length, type: WindowType.hann, periodic: periodic);