 | 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
Syntaxpublic void Histogram2(
int bins,
double min,
double max
)
public void Histogram2(
int bins,
double min,
double max
)
Public Sub Histogram2 (
bins As Integer,
min As Double,
max As Double
)
Public Sub Histogram2 (
bins As Integer,
min As Double,
max As Double
)
public:
void Histogram2(
int bins,
double min,
double max
)
public:
void Histogram2(
int bins,
double min,
double max
)
member Histogram2 :
bins : int *
min : float *
max : float -> unit
member Histogram2 :
bins : int *
min : float *
max : float -> unit
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