Property SLPowerSpectrum.TSLPowerSpectrum.Magnitude
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: TSLPowerSpectrum
Contents |
Syntax
Delphi:
property Magnitude : Boolean read FMagnitude write SetMagnitude;
C++ Builder:
__property bool Magnitude = { read=FMagnitude, write=SetMagnitude };
Summary
Magnitude/Power Spectrum mode.
Description
If the Magnitude property is set to True the component will
calculate the magnitude of the signal.
If the Magnitude property is set to False the component will calculate the Power Spectrum of the signal.
Delphi example:
SLPowerSpectrum1.Magnitude := True;
C++ Builder example:
SLPowerSpectrum1->Magnitude = true;
Visual C++(MFC) example:
SLPowerSpectrum1.Magnitude = true;
C# example:
powerSpectrum1.Magnitude = true;