public Histogram(
int binCount
)Public Sub New (
binCount As Integer
)public:
Histogram(
int binCount
)new :
binCount : int -> HistogramBy default, the bin borders are the integers, i.e. values in [0, 1) fall into bin 0, values in [1, 2) fall into bin 1, etc.
| ArgumentOutOfRangeException | binCount is less than 1. |