 | CIMUGridStatExt Method |
Reports statistics of a grid's elements.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridStatExt(
string grid,
int force,
ref int items,
ref int dums,
ref double min,
ref double max,
ref double mean,
ref double stddev
)
public static void GridStatExt(
string grid,
int force,
ref int items,
ref int dums,
ref double min,
ref double max,
ref double mean,
ref double stddev
)
Public Shared Sub GridStatExt (
grid As String,
force As Integer,
ByRef items As Integer,
ByRef dums As Integer,
ByRef min As Double,
ByRef max As Double,
ByRef mean As Double,
ByRef stddev As Double
)
Public Shared Sub GridStatExt (
grid As String,
force As Integer,
ByRef items As Integer,
ByRef dums As Integer,
ByRef min As Double,
ByRef max As Double,
ByRef mean As Double,
ByRef stddev As Double
)
public:
static void GridStatExt(
String^ grid,
int force,
int% items,
int% dums,
double% min,
double% max,
double% mean,
double% stddev
)
public:
static void GridStatExt(
String^ grid,
int force,
int% items,
int% dums,
double% min,
double% max,
double% mean,
double% stddev
)
static member GridStatExt :
grid : string *
force : int *
items : int byref *
dums : int byref *
min : float byref *
max : float byref *
mean : float byref *
stddev : float byref -> unit
static member GridStatExt :
grid : string *
force : int *
items : int byref *
dums : int byref *
min : float byref *
max : float byref *
mean : float byref *
stddev : float byref -> unit
Parameters
- grid
- Type: SystemString
Name of the grid to get stats from - force
- Type: SystemInt32
<define>IMU_STAT_FORCED</define> - items
- Type: SystemInt32
Number of valid elements in grid - dums
- Type: SystemInt32
Number of dummies in grid - min
- Type: SystemDouble
Minimum grid value - max
- Type: SystemDouble
Maximum grid value - mean
- Type: SystemDouble
Grid mean - stddev
- Type: SystemDouble
Grid standard deviation
Remarks
If the <define>IMU_STAT_FORCED</define> value is set, the
statistics will be recalculated.
Statistics are returned in the parameter set.
See Also