Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec *BlackmanHarris(TVec *Src, TSignalWindowMode WindowMode); | Blackman-Harris window. |
| 2 | TVec *BlackmanHarris(TVec *Src, TSignalWindowMode WindowMode, int Index, int Len); | Blackman Harris window. |
Overload 1: TVec *BlackmanHarris(TVec *Src, TSignalWindowMode WindowMode);
Blackman-Harris window.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | WindowMode | TSignalWindowMode |
Remarks:
Applies BlackmanHarris window to Src. Window functions are applied to the signal prior to conversion to frequency domain with the FFT algorithm, to reduce the spectral leakage. Their side-effect is a lower frequency resolution.
w[n] := 0.42323 - 0.49755*cos(2*Pi*n/(n-1)) + 0.07922*cos(4*Pi*n/(n-1))
0 <= n <= M - 1
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler
Overload 2: TVec *BlackmanHarris(TVec *Src, TSignalWindowMode WindowMode, int Index, int Len);
Blackman Harris window.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | WindowMode | TSignalWindowMode | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Applies exact Blackman Harris window to Src vector from element at Index to element at Index + Len - 1.
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler