Uses of Class
elki.data.HyperBoundingBox
-
Packages that use HyperBoundingBox Package Description elki.clustering.correlation.cash Helper classes for theCASH
algorithm.elki.data Basic classes for different data types, database object types and label types.elki.data.uncertain Uncertain data objects. -
-
Uses of HyperBoundingBox in elki.clustering.correlation.cash
Subclasses of HyperBoundingBox in elki.clustering.correlation.cash Modifier and Type Class Description class
CASHInterval
Provides a unique interval represented by its id, a hyper bounding box representing the alpha intervals, an interval of the corresponding distance, and a set of objects ids associated with this interval.Fields in elki.clustering.correlation.cash with type parameters of type HyperBoundingBox Modifier and Type Field Description private java.util.Map<HyperBoundingBox,WritableDoubleDataStore>
CASHIntervalSplit. f_maxima
Caches maximum function values for given intervals, used for better split performance.private java.util.Map<HyperBoundingBox,WritableDoubleDataStore>
CASHIntervalSplit. f_minima
Caches minimum function values for given intervals, used for better split performance.Methods in elki.clustering.correlation.cash that return HyperBoundingBox Modifier and Type Method Description HyperBoundingBox
ParameterizationFunction. determineAlphaMinMax(HyperBoundingBox interval)
Determines the alpha values where this function has a minumum and maximum value in the given interval.Methods in elki.clustering.correlation.cash with parameters of type HyperBoundingBox Modifier and Type Method Description private double
ParameterizationFunction. determineAlphaMax(int n, double[] alpha_max, HyperBoundingBox interval)
Determines the n-th alpha value where this function has a maximum in the specified interval.private double
ParameterizationFunction. determineAlphaMin(int n, double[] alpha_min, HyperBoundingBox interval)
Determines the n-th alpha value where this function has a minimum in the specified interval.HyperBoundingBox
ParameterizationFunction. determineAlphaMinMax(HyperBoundingBox interval)
Determines the alpha values where this function has a minumum and maximum value in the given interval.ModifiableDBIDs
CASHIntervalSplit. determineIDs(DBIDs superSetIDs, HyperBoundingBox interval, double d_min, double d_max)
Determines the ids belonging to the given interval, i.e. the parameterization functions falling within the interval.private ParameterizationFunction.ExtremumType
ParameterizationFunction. extremumType(int n, double[] alpha_extreme, HyperBoundingBox interval)
Returns the type of the extremum at the specified alpha values. -
Uses of HyperBoundingBox in elki.data
Subclasses of HyperBoundingBox in elki.data Modifier and Type Class Description class
ModifiableHyperBoundingBox
MBR class allowing modifications (as opposed toHyperBoundingBox
). -
Uses of HyperBoundingBox in elki.data.uncertain
Methods in elki.data.uncertain that return HyperBoundingBox Modifier and Type Method Description protected static HyperBoundingBox
AbstractUncertainObject. computeBounds(NumberVector[] samples)
Compute the bounding box for some samples.
-