Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function DCCrossingCount(const Src: TVec; DC: Double; Negative: Boolean; Index: Integer; Len: Integer): Integer; | Return the total count of zero crossings within Src starting at index to Index+Len. |
| 2 | function DCCrossingCount(const Src: TVec; DC: Double; Index: Integer; Len: Integer): Integer; | Return the number of DC crossings. |
Overload 1: function DCCrossingCount(const Src: TVec; DC: Double; Negative: Boolean; Index: Integer; Len: Integer): Integer;
Return the total count of zero crossings within Src starting at index to Index+Len.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | |
| 2 | DC | Double | scalar |
| 3 | Negative | Boolean | |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Returns: Int32
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).
Overload 2: function DCCrossingCount(const Src: TVec; DC: Double; Index: Integer; Len: Integer): Integer;
Return the number of DC crossings.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | |
| 2 | DC | Double | scalar |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Returns: Int32
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.