
public final class DoubleArrayStaticHistogram extends AbstractObjStaticHistogram<double[]>
double[]). This is
 actually one of the simpler specializations, as arrays are objects not
 primitive in Java.AbstractObjStaticHistogram.Iter| Modifier and Type | Field and Description | 
|---|---|
| private int | colsDesired number of columns in each bin. | 
database, binsize, max, offset, sizeCACHE_SHIFT| Constructor and Description | 
|---|
| DoubleArrayStaticHistogram(int bins,
                          double min,
                          double max,
                          int cols)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | increment(double coord,
         double[] data)Increment histogram by a double[]. | 
| protected double[] | makeObject()Class to make a new object for the data store. | 
| void | putData(double coord,
       double[] data)Deprecated. 
 use the explicit  increment(double, double[])instead. | 
get, itergetBinNr, getBinsize, getCoverMaximum, getCoverMinimum, getNumBins, growSizeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBinsize, getCoverMaximum, getCoverMinimum, getNumBinspublic DoubleArrayStaticHistogram(int bins,
                          double min,
                          double max,
                          int cols)
bins - Number of binsmin - Minimum value for the coordinatesmax - Maximum value for the coordinatescols - Number of columns in each bin.public void increment(double coord,
             double[] data)
coord - Coordinatedata - Data to increment by.@Deprecated public void putData(double coord, double[] data)
increment(double, double[]) instead.coord - Coordinatedata - Dataprotected double[] makeObject()
AbstractObjStaticHistogrammakeObject in class AbstractObjStaticHistogram<double[]>