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