hammingWindow function

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

Implementation

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