Click or drag to resize

CSTHistogram2 Method

This method prepares ST for recording histogram.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void Histogram2(
	int bins,
	double min,
	double max
)

public void Histogram2(
	int bins,
	double min,
	double max
)

Parameters

bins
Type: SystemInt32
# of bins
min
Type: SystemDouble
Min
max
Type: SystemDouble
Max
Remarks
The Number of bins includes the one before the minimum and the one after the maximum, so it must be a value >2. The width of the individual bins will be (Min-Max)/(# - 2) See histogram_ranges_
See Also