-
Notifications
You must be signed in to change notification settings - Fork 0
signal.WindowFunctions.Interface.WindowFunctionDescr
Christian d'Heureuse edited this page Jun 6, 2026
·
2 revisions
dsp-collection / signal/WindowFunctions / WindowFunctionDescr
Window function descriptor.
cpuCost: number;Relative complexity of computation.
f: WindowFunction;Non-normalized window function.
firstMinPos: number;Relative frequency position of the first minimum.
For most window functions the first minimum is a null in the spectrum or a zero in the filter transfer function.
But for the parabolic window, it's only a local minimum and not a null/zero.
In the sprectrum, the frequency is relative to the window size (DFT bin, normalized frequency).
When used as a filter, the frequency is relative to the FIR kernel size.
Formula for FIR filters:
firstMinFrequency = firstMinPos * sampleRate / firKernelWidth
fNorm: WindowFunction;Gain-normalized window function.
id: string;Internal ID of the window function.
name: string;Descriptive name.