applyWindowInPlace function
void
applyWindowInPlace(
- Float32List input, {
- WindowType type = WindowType.hann,
- bool periodic = true,
Multiplies input in place by a generated window.
Implementation
void applyWindowInPlace(
Float32List input, {
WindowType type = WindowType.hann,
bool periodic = true,
}) {
multiplyWithWindowInPlace(
input,
generateWindow(input.length, type: type, periodic: periodic),
);
}