Property SLFourier.TSLInverseFourier.Normalization
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: TSLInverseFourier
Contents |
Syntax
Delphi:
property Normalization : TSLFourierNormalization read FNormalize write SetNormalize default fnNone;
C++ Builder:
__property TSLFourierNormalization Normalization = { read=FNormalize, write=SetNormalize, default=fnNone };
Summary
The normalization type for the Inverse FFT operation.
Description
Use this property to specify the normalization type for the
Inverse FFT operation.
Delphi example:
SLInverseFourier1.Normalization := fnNormalizeSqrt;
C++ Builder example:
SLInverseFourier1->Normalization = fnNormalizeSqrt;
Visual C++(MFC) example:
SLInverseFourier1.Normalization = fnNormalizeSqrt;
C# example:
inverseFourier1.Normalization = Mitov.SignalLab.FourierNormalization.NormalizeSqrt;