-
Notifications
You must be signed in to change notification settings - Fork 52
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels