applyWindowReal method
Applies the window to the realArray
.
Does not modify the input array. Allocates and returns a new array.
Implementation
Float64List applyWindowReal(List<double> realArray) {
final c = Float64List.fromList(realArray);
inPlaceApplyWindowReal(c);
return c;
}