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

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

Namespace: Geosoft.Desktop.GXNet
Assembly: geosoft.desktop.gxnet (in geosoft.desktop.gxnet.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(
	CVV oVV1,
	CVV oVV2,
	CVV oVV3,
	CVV oVV4
)

Parameters

oVV1
Type: GeoEngine.Core.GXNetCVV
Duplicate data VV
oVV2
Type: GeoEngine.Core.GXNetCVV
Sample Type VV
oVV3
Type: GeoEngine.Core.GXNetCVV
Mean values VV (returned)
oVV4
Type: GeoEngine.Core.GXNetCVV
Diff values VV (returned)
See Also