 | CCHIMERAClipToDetectLimit Method |
Apply detection limit clipping of data.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void ClipToDetectLimit(
CVV vv,
double det_limit,
int conv
)
public static void ClipToDetectLimit(
CVV vv,
double det_limit,
int conv
)
Public Shared Sub ClipToDetectLimit (
vv As CVV,
det_limit As Double,
conv As Integer
)
Public Shared Sub ClipToDetectLimit (
vv As CVV,
det_limit As Double,
conv As Integer
)
public:
static void ClipToDetectLimit(
CVV^ vv,
double det_limit,
int conv
)
public:
static void ClipToDetectLimit(
CVV^ vv,
double det_limit,
int conv
)
static member ClipToDetectLimit :
vv : CVV *
det_limit : float *
conv : int -> unit
static member ClipToDetectLimit :
vv : CVV *
det_limit : float *
conv : int -> unit
Parameters
- vv
- Type: GeoEngine.Core.GXNetCVV
Input data vv (altered). - det_limit
- Type: SystemDouble
Detection limit - conv
- Type: SystemInt32
Auto-convert negatives?
Remarks
Flow:
1. If auto-converting negatives, then all negative values
are replaced by -0.5*value, and detection limit is ignored.
2. If not auto-converting negatives, and the detection limit is not
<define>rDUMMY</define>, then values less than the detection limit are converted to
one-half the detection limit.
See Also