 | CVVUDupStats Method |
Calculate means and differences for duplicate sample pairs
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void DupStats(
CVV data_vv,
CVV sample_vv,
CVV mean_vv,
CVV diff_vv
)
public static void DupStats(
CVV data_vv,
CVV sample_vv,
CVV mean_vv,
CVV diff_vv
)
Public Shared Sub DupStats (
data_vv As CVV,
sample_vv As CVV,
mean_vv As CVV,
diff_vv As CVV
)
Public Shared Sub DupStats (
data_vv As CVV,
sample_vv As CVV,
mean_vv As CVV,
diff_vv As CVV
)
public:
static void DupStats(
CVV^ data_vv,
CVV^ sample_vv,
CVV^ mean_vv,
CVV^ diff_vv
)
public:
static void DupStats(
CVV^ data_vv,
CVV^ sample_vv,
CVV^ mean_vv,
CVV^ diff_vv
)
static member DupStats :
data_vv : CVV *
sample_vv : CVV *
mean_vv : CVV *
diff_vv : CVV -> unit
static member DupStats :
data_vv : CVV *
sample_vv : CVV *
mean_vv : CVV *
diff_vv : CVV -> unit
Parameters
- data_vv
- Type: GeoEngine.Core.GXNetCVV
Duplicate data VV - sample_vv
- Type: GeoEngine.Core.GXNetCVV
Sample Type VV - mean_vv
- Type: GeoEngine.Core.GXNetCVV
Mean values VV (returned) - diff_vv
- Type: GeoEngine.Core.GXNetCVV
Diff values VV (returned)
Remarks
Created for duplicate sample handling in CHIMERA. On input,
a numeric VV containing data values, and a sample type VV.
Sample pairs have types "1" and "2". This routine searches for
types in order "1 2 1 2", and writes the mean values of pairs
to the mean value VV, and the differences with the mean (equal
values, negative and positive) to the difference VV. Results
for samples out of order, for unmatched values, or when the
sample type does not equal "1" or "2" are set to dummy.
See Also