Overload List
| # | Signature | Description |
|---|---|---|
| 1 | int DCCrossingCount(TVec *Src, double DC, int Index = 0, int Len = - 1); | Return the number of DC crossings. |
| 2 | int DCCrossingCount(TVec *Src, double DC, bool Negative, int Index = 0, int Len = - 1); | Return the total count of zero crossings within Src starting at index to Index+Len. |
Overload 1: int DCCrossingCount(TVec *Src, double DC, int Index = 0, int Len = - 1);
Return the number of DC crossings.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | DC | double | |
| 3 | Index = 0 | int | |
| 4 | Len = - 1 | int |
Remarks:
Return the total count of DC crossings within Src starting at index to Index+Len. If Len = -1 end the search at Src.Length.
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler
Overload 2: int DCCrossingCount(TVec *Src, double DC, bool Negative, int Index = 0, int Len = - 1);
Return the total count of zero crossings within Src starting at index to Index+Len.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | DC | double | |
| 3 | Negative | bool | |
| 4 | Index = 0 | int | |
| 5 | Len = - 1 | int |
Remarks:
If Len = -1 end the search at Src.Length. Count DC crossings only in one way, from - to + (Negative = True) or from + to - (Negative = False).
Declared in Dew::Signal::Units::SignalUtils · Dew.Signal/Units.SignalUtils.h · Cross-compiler