public class FloatDynamicHistogram extends FloatStaticHistogram
FloatStaticHistogram.Iter
Modifier and Type | Field and Description |
---|---|
private double[] |
cachec
Cache for data to be inserted.
|
private int |
cachefill
Cache fill size
|
private float[] |
cachev
Cache for data to be inserted.
|
private int |
destsize
Destination (minimum) size of the structure.
|
data
base, binsize, max, offset, size
CACHE_SHIFT
Constructor and Description |
---|
FloatDynamicHistogram(int bins)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
protected float |
downsample(float[] data,
int start,
int end,
int size)
Perform downsampling on a number of bins.
|
float |
get(double coord)
Get the value at a particular position.
|
double |
getBinsize()
Get the size (width) of a bin.
|
double |
getCoverMaximum()
Get maximum (covered by bins, not data!)
|
double |
getCoverMinimum()
Get minimum (covered by bins, not data!)
|
int |
getNumBins()
Get the number of bins actually in use.
|
void |
increment(double coord,
float value)
Put fresh data into the histogram (or into the cache)
|
FloatStaticHistogram.Iter |
iter()
Get an iterator over all histogram bins.
|
(package private) void |
materialize()
Materialize the histogram from the cache.
|
private void |
testResample(double coord)
Test (and perform) downsampling when neede.
|
getBinNr, growSize
private double[] cachec
private float[] cachev
private int cachefill
private int destsize
public FloatDynamicHistogram(int bins)
bins
- Design number of bins - may become twice as large!void materialize()
public float get(double coord)
FloatStaticHistogram
get
in class FloatStaticHistogram
coord
- Coordinatepublic void increment(double coord, float value)
increment
in interface FloatHistogram
increment
in class FloatStaticHistogram
coord
- Coordinatevalue
- Valueprivate void testResample(double coord)
coord
- coordinate to accomodate.public FloatStaticHistogram.Iter iter()
AbstractStaticHistogram
iter
in interface FloatHistogram
iter
in interface Histogram
iter
in class FloatStaticHistogram
public int getNumBins()
AbstractStaticHistogram
getNumBins
in interface Histogram
getNumBins
in class AbstractStaticHistogram
public double getBinsize()
AbstractStaticHistogram
getBinsize
in interface Histogram
getBinsize
in class AbstractStaticHistogram
public double getCoverMinimum()
AbstractStaticHistogram
getCoverMinimum
in interface Histogram
getCoverMinimum
in class AbstractStaticHistogram
public double getCoverMaximum()
AbstractStaticHistogram
getCoverMaximum
in interface Histogram
getCoverMaximum
in class AbstractStaticHistogram
protected float downsample(float[] data, int start, int end, int size)
data
- Data array (needs cast!)start
- Interval startend
- Interval end (exclusive)size
- Intended size - extra bins are assumed to be empty, should be a
power of twoCopyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.