Click or drag to resize
CVVUInterp Method
Replace all dummies by interpolating from valid data.

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
Edge behaviour: Dummies at the ends are treated as follows for various combinations of the inside and outside interpolation choices: if ((iOutside==VV_INTERP_EDGE_NEAREST) || (iOutside==VV_INTERP_EDGE_SAME && iInside==VV_INTERP_NEAREST)) // -- Set dummies to the same value as the last defined element else if ((iOutside==VV_INTERP_EDGE_LINEAR) || (iOutside==VV_INTERP_EDGE_SAME && iInside==VV_INTERP_LINEAR)) // --- Set dummies using the slope of the last two defined elements endif In all other cases and combinations of the two interpolation choices, the dummies are left "as is".
Syntax
public static void Interp(
	CVV oVV1,
	int i2,
	int i3
)

Parameters

oVV1
Type: GeoEngine.Core.GXNetCVV
input VV
i2
Type: SystemInt32
See VVU_INTERPConstant
i3
Type: SystemInt32
See VVU_INTERP_EDGEConstant
See Also