Click or drag to resize

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
Syntax
public 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
)

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