Uses of Class
elki.utilities.pairs.DoubleIntPair
-
Packages that use DoubleIntPair Package Description elki.index.idistance iDistance is a distance based indexing technique, using a reference points embedding.elki.index.tree.metrical.mtreevariants M-tree and variants.elki.index.tree.spatial.rstarvariants.strategies.split Splitting strategies for R-trees.elki.timeseries Algorithms for change point detection in time series.elki.utilities.pairs Pairs utility classes.elki.visualization.parallel3d 3DPC: 3D parallel coordinate plot visualization for ELKI. -
-
Uses of DoubleIntPair in elki.index.idistance
Methods in elki.index.idistance that return DoubleIntPair Modifier and Type Method Description protected static <O> DoubleIntPair[]
InMemoryIDistanceIndex. rankReferencePoints(DistanceQuery<O> distanceQuery, O obj, ArrayDBIDs referencepoints)
Sort the reference points by distance to the query object -
Uses of DoubleIntPair in elki.index.tree.metrical.mtreevariants
Methods in elki.index.tree.metrical.mtreevariants that return types with arguments of type DoubleIntPair Modifier and Type Method Description protected java.util.List<DoubleIntPair>
AbstractMTree. getSortedEntries(N node, DBID q)
Sorts the entries of the specified node according to their minimum distance to the specified object. -
Uses of DoubleIntPair in elki.index.tree.spatial.rstarvariants.strategies.split
Fields in elki.index.tree.spatial.rstarvariants.strategies.split declared as DoubleIntPair Modifier and Type Field Description (package private) DoubleIntPair[]
TopologicalSplitter.Split. bestSorting
Indicates whether the sorting according to maximal or to minimal value has been used for choosing the split axis and split point.(package private) DoubleIntPair[]
TopologicalSplitter.Split. maxSorting
The entries sorted according to their max values of their MBRs.(package private) DoubleIntPair[]
TopologicalSplitter.Split. minSorting
The entries sorted according to their min values of their MBRs.Methods in elki.index.tree.spatial.rstarvariants.strategies.split with parameters of type DoubleIntPair Modifier and Type Method Description private E
TopologicalSplitter.Split. get(DoubleIntPair pair)
Get an entry.private ModifiableHyperBoundingBox
TopologicalSplitter.Split. mbr(DoubleIntPair[] sorting, int from, int to)
Computes and returns the mbr of the specified nodes, only the nodes between from and to index are considered. -
Uses of DoubleIntPair in elki.timeseries
Methods in elki.timeseries that return DoubleIntPair Modifier and Type Method Description static DoubleIntPair
OfflineChangePointDetectionAlgorithm. bestChangeInMean(double[] sums, int begin, int end)
Find the best position to assume a change in mean. -
Uses of DoubleIntPair in elki.utilities.pairs
Fields in elki.utilities.pairs with type parameters of type DoubleIntPair Modifier and Type Field Description static java.util.Comparator<DoubleIntPair>
DoubleIntPair. BYFIRST_COMPARATOR
Comparator to compare by first component onlystatic java.util.Comparator<DoubleIntPair>
DoubleIntPair. BYSECOND_COMPARATOR
Comparator to compare by second component onlystatic java.util.Comparator<DoubleIntPair>
DoubleIntPair. SWAPPED_COMPARATOR
Comparator to compare by swapped componentsMethods in elki.utilities.pairs with parameters of type DoubleIntPair Modifier and Type Method Description int
DoubleIntPair. compareSwappedTo(DoubleIntPair other)
Implementation of comparableSwapped interface, sorting by second then first.int
DoubleIntPair. compareTo(DoubleIntPair other)
Implementation of comparable interface, sorting by first then second. -
Uses of DoubleIntPair in elki.visualization.parallel3d
Fields in elki.visualization.parallel3d declared as DoubleIntPair Modifier and Type Field Description (package private) DoubleIntPair[]
Parallel3DRenderer. axes
Axes sorting array.
-