Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SortConj(TVec *Vec, double Tol = 1E-4); | Conjugate sort complex values. |
| 2 | void SortConj(TVec *Vec, int Index, int Len, double Tol = 1E-4); | Conjugate sort complex Vec values from Index to Index+Len. |
Overload 1: void SortConj(TVec *Vec, double Tol = 1E-4);
Conjugate sort complex values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TVec * | |
| 2 | Tol = 1E-4 | double |
Remarks:
Sort complex values in Vec with tolerance Tol. Conjugate sort will group conjugated complex numbers together. This routine is usefull for processing complex zeros/poles.
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler
Overload 2: void SortConj(TVec *Vec, int Index, int Len, double Tol = 1E-4);
Conjugate sort complex Vec values from Index to Index+Len.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TVec * | |
| 2 | Index | int | |
| 3 | Len | int | |
| 4 | Tol = 1E-4 | double |
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler