Uses of Interface
suramadu.util.stats.Range

Packages that use Range
suramadu.util.stats   
 

Uses of Range in suramadu.util.stats
 

Classes in suramadu.util.stats that implement Range
 class HistogramBin
          This class represents a single bin in a histogram.
 

Methods in suramadu.util.stats that return Range
 Range HistogramBin.merge(Range range)
          A helper method that will merge this HistogramBin with another HistogramBin iff the ranges are adjescent.
 Range Range.merge(Range range)
          A helper method that will merge this range with another range iff the ranges are adjescent.
static Range StatPack.mode(int[] intArray)
          Calculate the statistical mode of an array of ints.
static Range StatPack.mode(int[] intArray, int numBins)
          Calculate the statistical mode of an array of ints.
static Range StatPack.mode(long[] longArray)
          Calculate the statistical mode of an array of longs.
static Range StatPack.mode(long[] longArray, long numBins)
          Calculate the statistical mode of an array of longs.
static Range StatPack.mode(float[] floatArray)
          Calculate the statistical mode of an array of floats.
static Range StatPack.mode(float[] floatArray, float numBins)
          Calculate the statistical mode of an array of floats.
static Range StatPack.mode(double[] doubleArray)
          Calculate the statistical mode of an array of doubles.
static Range StatPack.mode(double[] doubleArray, double numBins)
          Calculate the statistical mode of an array of doubles.
static Range StatPack.mode(java.util.Collection c, java.lang.Number numBins)
          Calculate the statistical mode of a Collection of Numbers.
 

Methods in suramadu.util.stats with parameters of type Range
 Range HistogramBin.merge(Range range)
          A helper method that will merge this HistogramBin with another HistogramBin iff the ranges are adjescent.
 Range Range.merge(Range range)
          A helper method that will merge this range with another range iff the ranges are adjescent.