Click or drag to resize
CVVUNoiseCheck2 Method
Like NoiseCheck_VVU, but returns maximum deviation at all points.

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

Namespace: Geosoft.Desktop.GXNet
Assembly: geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll)
Notes
This function checks vertical deviation of data in an input VV against a moving straight line, where the X-axis value is taken to be the data index, and the Y-axis value is the input data VV value. The straight line is drawn between data points at the ends of the line segment, whose length is an input. The output flag VV is set to 0 if data point in input VV falls within the deviation for all the moving line segments of which it is a part, otherwise, it will be set to 1. The output maximum deviation VV contains the maximum deviation at each point for all the moving line segments that it is a part of.
Syntax
public static void NoiseCheck2(
	CVV oVV1,
	CVV oVV2,
	CVV oVV3,
	double d4,
	int i5
)

Parameters

oVV1
Type: GeoEngine.Core.GXNetCVV
input VV on which to apply quality control Required in GS_DOUBLE or GS_FLOAT
oVV2
Type: GeoEngine.Core.GXNetCVV
output flag VV with result 0 and 1. Required in GS_BYTE
oVV3
Type: GeoEngine.Core.GXNetCVV
Output maximum deviation VV.
d4
Type: SystemDouble
allowed deviation over a number of data points in input VV (next parameter). Must be >= 0.0
i5
Type: SystemInt32
number of data points in the line segment. Must be > 0
See Also