  | CVVUPolyFill Method  | 
 Fill a VV with values from an n'th order polynomial, integral x.
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void PolyFill(
	CGXNETCore gxNetShared,
	CVV vv_d,
	int order,
	CVV vv_c
)
public static void PolyFill(
	CGXNETCore gxNetShared,
	CVV vv_d,
	int order,
	CVV vv_c
)
Public Shared Sub PolyFill ( 
	gxNetShared As CGXNETCore,
	vv_d As CVV,
	order As Integer,
	vv_c As CVV
)
Public Shared Sub PolyFill ( 
	gxNetShared As CGXNETCore,
	vv_d As CVV,
	order As Integer,
	vv_c As CVV
)
public:
static void PolyFill(
	CGXNETCore^ gxNetShared, 
	CVV^ vv_d, 
	int order, 
	CVV^ vv_c
)
public:
static void PolyFill(
	CGXNETCore^ gxNetShared, 
	CVV^ vv_d, 
	int order, 
	CVV^ vv_c
)
static member PolyFill : 
        gxNetShared : CGXNETCore * 
        vv_d : CVV * 
        order : int * 
        vv_c : CVV -> unit 
static member PolyFill : 
        gxNetShared : CGXNETCore * 
        vv_d : CVV * 
        order : int * 
        vv_c : CVV -> unit 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - vv_d
 - Type: GeoEngine.Core.GXNetXCVV
VV with output data. (Preset length) - order
 - Type: SystemInt32
Order of the polynomial 0-9 - vv_c
 - Type: GeoEngine.Core.GXNetXCVV
VV with polynomial coefficients (input) 
Remarks
The output VV length must be set as desired before calling.
The X scale is unitless (1 per element), i.e. 0,1,2,3,...
See Also