Blackman
Blackman window for FFT spectrum analysis.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.AudioModule
Blackman = 4
Remarks
Window function: , where is the sample index and is the window length.
W[n] = 0.42 - 0.5 " cos(2π " n/N) + 0.08 " cos(4π " n/N)nNPass this value to the parameter of AudioListener.GetSpectrumData or AudioSource.GetSpectrumData. The window is applied before the FFT to reduce spectral leakage between frequency bins.
windowUse the Blackman window when you need lower sidelobes than FFTWindow.Hamming or FFTWindow.Hanning and can accept a wider main lobe. For even stronger sidelobe suppression, use FFTWindow.BlackmanHarris.