 | CVVUPolyFill2 Method |
Fill a VV with values from an n'th order polynomial, specified X
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void PolyFill2(
CVV vv_x,
CVV vv_d,
int order,
CVV vv_c
)
public static void PolyFill2(
CVV vv_x,
CVV vv_d,
int order,
CVV vv_c
)
Public Shared Sub PolyFill2 (
vv_x As CVV,
vv_d As CVV,
order As Integer,
vv_c As CVV
)
Public Shared Sub PolyFill2 (
vv_x As CVV,
vv_d As CVV,
order As Integer,
vv_c As CVV
)
public:
static void PolyFill2(
CVV^ vv_x,
CVV^ vv_d,
int order,
CVV^ vv_c
)
public:
static void PolyFill2(
CVV^ vv_x,
CVV^ vv_d,
int order,
CVV^ vv_c
)
static member PolyFill2 :
vv_x : CVV *
vv_d : CVV *
order : int *
vv_c : CVV -> unit
static member PolyFill2 :
vv_x : CVV *
vv_d : CVV *
order : int *
vv_c : CVV -> unit
Parameters
- vv_x
- Type: GeoEngine.Core.GXNetCVV
VV with x spacing (input) - vv_d
- Type: GeoEngine.Core.GXNetCVV
VV with output data. (Preset length) - order
- Type: SystemInt32
Order of the polynomial 0-9 - vv_c
- Type: GeoEngine.Core.GXNetCVV
VV with polynomial coefficients (order+1 values)
Remarks
The output VV length must be set as desired before calling.
The X scale is defined by a X VV (see Trend_VV for unitless X).
See Also