 | CPGUPCTransform Method |
Transform/De-transform data.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void PCTransform(
CPG pg,
CVV vv_d,
CVV vv_f,
CVV vv_t,
int dir
)
public static void PCTransform(
CPG pg,
CVV vv_d,
CVV vv_f,
CVV vv_t,
int dir
)
Public Shared Sub PCTransform (
pg As CPG,
vv_d As CVV,
vv_f As CVV,
vv_t As CVV,
dir As Integer
)
Public Shared Sub PCTransform (
pg As CPG,
vv_d As CVV,
vv_f As CVV,
vv_t As CVV,
dir As Integer
)
public:
static void PCTransform(
CPG^ pg,
CVV^ vv_d,
CVV^ vv_f,
CVV^ vv_t,
int dir
)
public:
static void PCTransform(
CPG^ pg,
CVV^ vv_d,
CVV^ vv_f,
CVV^ vv_t,
int dir
)
static member PCTransform :
pg : CPG *
vv_d : CVV *
vv_f : CVV *
vv_t : CVV *
dir : int -> unit
static member PCTransform :
pg : CPG *
vv_d : CVV *
vv_f : CVV *
vv_t : CVV *
dir : int -> unit
Parameters
- pg
- Type: GeoEngine.Core.GXNetCPG
Matrix to transform - vv_d
- Type: GeoEngine.Core.GXNetCVV
Detection limits for the columns - vv_f
- Type: GeoEngine.Core.GXNetCVV
Maximum values for the columns - vv_t
- Type: GeoEngine.Core.GXNetCVV
<define>PGU_TRANS</define> - dir
- Type: SystemInt32
<define>PGU_DIRECTION</define>
Remarks
Works on columns of the PG.
Forward direction: Applies the selected transform to the data.
Backward direction: Applies the inverse transform to the data.
The detection limits are input with a VV. In the forward
transform, data values less than the detection limit are set
to the limit.
The factor limits are input with a VV. In the forward
transform, data values greater than the maximum values are set
to the maximum.
See Also