Click or drag to resize
CVVUDupStats Method
Calculate means and differences for duplicate sample pairs

Available since Oasis montaj version: 5.0
License: Available to anyone with an Oasis Montaj license.  

Namespace: Geosoft.Desktop.GXNetX
Assembly: geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll)
Notes
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.
Syntax
public static void DupStats(
	CGXNETCore gxNetShared,
	CVV data_vv,
	CVV sample_vv,
	CVV mean_vv,
	CVV diff_vv
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
data_vv
Type: GeoEngine.Core.GXNetXCVV
Duplicate data VV
sample_vv
Type: GeoEngine.Core.GXNetXCVV
Sample Type VV
mean_vv
Type: GeoEngine.Core.GXNetXCVV
Mean values VV (returned)
diff_vv
Type: GeoEngine.Core.GXNetXCVV
Diff values VV (returned)
See Also