Property SLFourier.TSLFourierBase.WindowType
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLFourierBase
Contents |
Syntax
Delphi:
property WindowType : TSLExtendedWindowType read FWindowType write SetWindowTypeProp default xwtRect;
C++ Builder:
__property TSLExtendedWindowType WindowType = { read=FWindowType, write=SetWindowTypeProp, default=xwtRect };
Summary
Windowing function to be applied on the signal prior performing FFT.
Description
Use this property to specify the windowing function to be
applied on the signal prior performing FFT.
Delphi example:
SLFourier1.WindowType := xwtHanning;
C++ Builder example:
SLFourier1->WindowType = xwtHanning;
Visual C++(MFC) example:
SLFourier1.WindowType = xwtHanning;
C# example:
fourier1.WindowType = Mitov.SignalLab.ExtendedWindowType.Hanning;