 | CSTHistogram 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
Syntaxpublic void Histogram(
int bins
)
public void Histogram(
int bins
)
Public Sub Histogram (
bins As Integer
)
Public Sub Histogram (
bins As Integer
)
public:
void Histogram(
int bins
)
public:
void Histogram(
int bins
)
member Histogram :
bins : int -> unit
member Histogram :
bins : int -> unit
Parameters
- bins
- Type: SystemInt32
# of bins
Remarks
The Number of bins includes the one before the minimum
and the one after the maximum, so it must be a value >2.
IMPORTANT: This function gets the histogram minimum and
maximum from the current min and max values stored in the ST,
so this is equivalent to calling Histogram2_ST with
#bins, Min, (Max-Min)/(# bins -2))
You should already have the data loaded in order to call this
function.
See histogram_ranges_
See Also