multiplyWithWindowInPlace function
Multiplies input by window in place.
Implementation
void multiplyWithWindowInPlace(Float32List input, Float32List window) {
_checkSameLength(input, window);
for (var i = 0; i < input.length; i++) {
input[i] *= window[i];
}
}