Property SLFourier.TSLFourierBase.SamplingWindowStep
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 SamplingWindowStep : Cardinal read FSamplingWindowStep write SetSamplingWindowStep;
C++ Builder:
__property unsigned int SamplingWindowStep = { read=FSamplingWindowStep, write=SetSamplingWindowStep };
Summary
Step in samples when the next FFT will be applied.
Description
Use this property to specify a step in samples when the next
FFT will be applied. This allows the FFT to be applied with a
step different than the size of an FFT buffer. If the
property is set to 0, the next FFT will be performed exactly
the size of the FFT buffer samples after the current one.
Otherwise the SamplingWindowStep value will be used as step
in samples.
Delphi example:
SLFourier1.SamplingWindowStep := 2000;
C++ Builder example:
SLFourier1->SamplingWindowStep = 2000;
Visual C++(MFC) example:
SLFourier1.SamplingWindowStep = 2000;
C# example:
fourier1.SamplingWindowStep = 2000;