- All Implemented Interfaces:
- Serializable
public class Histogram
extends Object
implements Serializable
Histogram: values for a single histogram.
Assumption here is that the N bins are equally split between the min and max.
So, for nBins = 3, we have: Step = (max-min)/3.
First bin have bounds (min, min + 1 * step); second bin would have bounds (min + 1 * step, min + 2 * step) and so on
- Author:
- Alex Black
- See Also:
- Serialized Form