 | CVAiCheckForRepeating Method |
Window a VA to a VV based on fractional frame
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int iCheckForRepeating(
CVV vv_t,
int subtract_vv,
CVV vv_sub,
double tol
)
public int iCheckForRepeating(
CVV vv_t,
int subtract_vv,
CVV vv_sub,
double tol
)
Public Function iCheckForRepeating (
vv_t As CVV,
subtract_vv As Integer,
vv_sub As CVV,
tol As Double
) As Integer
Public Function iCheckForRepeating (
vv_t As CVV,
subtract_vv As Integer,
vv_sub As CVV,
tol As Double
) As Integer
public:
int iCheckForRepeating(
CVV^ vv_t,
int subtract_vv,
CVV^ vv_sub,
double tol
)
public:
int iCheckForRepeating(
CVV^ vv_t,
int subtract_vv,
CVV^ vv_sub,
double tol
)
member iCheckForRepeating :
vv_t : CVV *
subtract_vv : int *
vv_sub : CVV *
tol : float -> int
member iCheckForRepeating :
vv_t : CVV *
subtract_vv : int *
vv_sub : CVV *
tol : float -> int
Parameters
- vv_t
- Type: GeoEngine.Core.GXNetXCVV
Items to test for repeats (length equal to the number of columns in the VA) - subtract_vv
- Type: SystemInt32
If set to 1, subtract single values in the following VV from every array row item before testing (e.g. an elevation value) - vv_sub
- Type: GeoEngine.Core.GXNetXCVV
Values to subtract from each row before doing the comparison test (length equal to the length of the VA). Can be VV_NULL (-1) if above subtraction parameter is zero - tol
- Type: SystemDouble
Comparison tolerance - set to zero or dummy for exact match
Return Value
Type:
Int321 if rows repeat, 0 if not.
Remarks
Returns 1 if all rows contain values which match the input values.
Optionally, row values can be offset by amounts specified with a secondary VV.
This function was designed to detect "depth" array channels, including those which might
have been offset with topography on each row.
An absolute tolerance can be specified to ignore numerical noise.
See Also