Package com.macrofocus.math.stat
Interface Histogram
-
public interface Histogram
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBin(double v)doublegetBinMaxValue(int index)doublegetBinMinValue(int index)intgetCountAtBin(int index)intgetMaxCount()doublegetMaxValue()doublegetMinValue()intgetNumberOfBins()
-
-
-
Method Detail
-
getNumberOfBins
int getNumberOfBins()
-
getCountAtBin
int getCountAtBin(int index)
-
getBinMinValue
double getBinMinValue(int index)
-
getBinMaxValue
double getBinMaxValue(int index)
-
getMinValue
double getMinValue()
-
getMaxValue
double getMaxValue()
-
getMaxCount
int getMaxCount()
-
getBin
int getBin(double v)
-
-