-
Notifications
You must be signed in to change notification settings - Fork 53
Closed
Description
FftSharp/src/FftSharp/Windows/Hanning.cs
Line 18 in a736f90
window[i] = 0.5 - 0.5 * Math.Cos(2 * Math.PI * i / size); |
Shouldn't this line be:
window[i] = 0.5 - 0.5 * Math.Cos(2 * Math.PI * i / (size-1));
Otherwise the window is not symmetric.
Metadata
Metadata
Assignees
Labels
No labels