 | CVARange Method |
Computes the minimum and maximum range of the data, in doubles,
in a vector while ignoring dummies, for a range of columns and rows.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void Range(
int startRow,
int startCol,
int rows,
int columns,
ref double min,
ref double max
)
public void Range(
int startRow,
int startCol,
int rows,
int columns,
ref double min,
ref double max
)
Public Sub Range (
startRow As Integer,
startCol As Integer,
rows As Integer,
columns As Integer,
ByRef min As Double,
ByRef max As Double
)
Public Sub Range (
startRow As Integer,
startCol As Integer,
rows As Integer,
columns As Integer,
ByRef min As Double,
ByRef max As Double
)
public:
void Range(
int startRow,
int startCol,
int rows,
int columns,
double% min,
double% max
)
public:
void Range(
int startRow,
int startCol,
int rows,
int columns,
double% min,
double% max
)
member Range :
startRow : int *
startCol : int *
rows : int *
columns : int *
min : float byref *
max : float byref -> unit
member Range :
startRow : int *
startCol : int *
rows : int *
columns : int *
min : float byref *
max : float byref -> unit
Parameters
- startRow
- Type: SystemInt32
Starting row (0 to nRows-1) - startCol
- Type: SystemInt32
Starting column (0 to nColumns-1 - rows
- Type: SystemInt32
Number of rows (-1 for all from start) - columns
- Type: SystemInt32
Number of columns (-1 for all from start) - min
- Type: SystemDouble
Minimum value - returned - max
- Type: SystemDouble
Maximum value - returned
See Also