 | CVVURegress Method |
Calculate linear regression through data
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Regress(
CVV vv_x,
CVV vv_y,
ref double slp,
ref double intercept
)
public static void Regress(
CVV vv_x,
CVV vv_y,
ref double slp,
ref double intercept
)
Public Shared Sub Regress (
vv_x As CVV,
vv_y As CVV,
ByRef slp As Double,
ByRef intercept As Double
)
Public Shared Sub Regress (
vv_x As CVV,
vv_y As CVV,
ByRef slp As Double,
ByRef intercept As Double
)
public:
static void Regress(
CVV^ vv_x,
CVV^ vv_y,
double% slp,
double% intercept
)
public:
static void Regress(
CVV^ vv_x,
CVV^ vv_y,
double% slp,
double% intercept
)
static member Regress :
vv_x : CVV *
vv_y : CVV *
slp : float byref *
intercept : float byref -> unit
static member Regress :
vv_x : CVV *
vv_y : CVV *
slp : float byref *
intercept : float byref -> unit
Parameters
- vv_x
- Type: GeoEngine.Core.GXNetCVV
X data - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y data - slp
- Type: SystemDouble
Returns slope - intercept
- Type: SystemDouble
Returns intercept
See Also