applyWindow method
Applies the window to the complexArray
.
Does not modify the input array. Allocates and returns a new array.
Implementation
Float64x2List applyWindow(Float64x2List complexArray) {
final c = complexArray.sublist(0);
inPlaceApplyWindow(c);
return c;
}