Overload List
| # | Signature | Description |
|---|---|---|
| 1 | virtual TCplx ComplexEst(double Freq); | Returns the complex value of the Freq frequency according to the value of the Peaks property. |
| 2 | virtual void ComplexEst(double Freq1, double Freq2, TCplx &spcEstimate1, TCplx &spcEstimate2); | Returns the complex value of the Freq frequency according to the value of the Peaks property. |
| 3 | virtual void ComplexEst(TVec *Freq, TVec *aResult); | Returns the complex value of the Freq frequencies according to the value of the Peaks property. |
Overload 1: virtual TCplx ComplexEst(double Freq);
Returns the complex value of the Freq frequency according to the value of the Peaks property.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Freq | double |
Remarks:
This function will work only, if Method = smFFT.
Declared in Dew::Signal::TSpectrumAnalyzer · Dew.Signal/SignalAnalysis.h · Cross-compiler
Overload 2: virtual void ComplexEst(double Freq1, double Freq2, TCplx &spcEstimate1, TCplx &spcEstimate2);
Returns the complex value of the Freq frequency according to the value of the Peaks property.
Remarks:
This function will work only, if Method = smFFT. When peak interpolation method is other than imNumeric, then the spcEstimate1 and spcEstimate2 will contain only the value of the nearest spectral peak. This function takes equal amount of time as the variant taking only one Freq parameter and is thus two times faster.
Declared in Dew::Signal::TSpectrumAnalyzer · Dew.Signal/SignalAnalysis.h · Cross-compiler