Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double FindFrequency(const double Frequency); | Finds the largest peak on the frequency interval. |
| 2 | void FindFrequency(TVec *Frequency); | Finds the largest peak on the frequency interval for each value in Frequency parameter. |
Overload 1: double FindFrequency(const double Frequency);
Finds the largest peak on the frequency interval.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Frequency | const double |
Frequency interval is limited in two ways. First, it is limited with values of the properties: BandwidthL and BandwidthH. This limitation applies only, if UseFullBandwidth is False. And second, it is limited with the value of the TraceInterval property. The Frequency parameter contains the previous known value of the marked peak on entry and the frequency of the newly found peak on exit from the routine.
Overload 2: void FindFrequency(TVec *Frequency);
Finds the largest peak on the frequency interval for each value in Frequency parameter.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Frequency | TVec * |
Frequency interval is limited in two ways. First, it is limited with values of the properties: BandwidthL and BandwidthH. This limitation applies only, if UseFullBandwidth is False. And second, it is limited with the value of the TraceInterval property. The Frequency parameter contains the previous known value of the marked peak on entry and the frequency of the newly found peak on exit from the routine.