rectWindow function

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

Implementation

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