Uses of Interface
elki.database.ids.DoubleDBIDListIter
-
Packages that use DoubleDBIDListIter Package Description elki.database.ids Database object identification and ID group handling API.elki.database.ids.integer Integer-based DBID implementation -- do not use directly - always useDBIDUtil
.elki.evaluation.scores.adapter Adapter classes for ranking and scoring measures.elki.index.idistance iDistance is a distance based indexing technique, using a reference points embedding.elki.index.tree.metrical.covertree Cover-tree variations.elki.index.tree.metrical.vptree elki.index.tree.spatial.kd K-d-tree and variants.elki.outlier.distance Distance-based outlier detection algorithms, such as DBOutlier and kNN.elki.outlier.intrinsic Outlier detection algorithms based on intrinsic dimensionality. -
-
Uses of DoubleDBIDListIter in elki.database.ids
Subinterfaces of DoubleDBIDListIter in elki.database.ids Modifier and Type Interface Description interface
DoubleDBIDListMIter
Modifiable DBIDList iterator.Fields in elki.database.ids declared as DoubleDBIDListIter Modifier and Type Field Description static DoubleDBIDListIter
DoubleDBIDListIter. EMPTY
Static empty iterator.Methods in elki.database.ids that return DoubleDBIDListIter Modifier and Type Method Description DoubleDBIDListIter
DoubleDBIDListIter. advance()
DoubleDBIDListIter
DoubleDBIDListIter. advance(int count)
DoubleDBIDListIter
DoubleDBIDList. iter()
DoubleDBIDListIter
DoubleDBIDListIter. retract()
DoubleDBIDListIter
DoubleDBIDListIter. seek(int off)
Methods in elki.database.ids with parameters of type DoubleDBIDListIter Modifier and Type Method Description private static void
QuickSelectDBIDs. insertionSort(ModifiableDoubleDBIDList data, int start, int end, DoubleDBIDListIter iter1, DoubleDBIDListIter iter2)
Sort a small array using repetitive insertion sort. -
Uses of DoubleDBIDListIter in elki.database.ids.integer
Subinterfaces of DoubleDBIDListIter in elki.database.ids.integer Modifier and Type Interface Description interface
DoubleIntegerDBIDListIter
Combination interface of the DoubleDBIDListIter with IntegerDBIDIter.(package private) interface
DoubleIntegerDBIDListMIter
Combination interface for modifiable iterators.Classes in elki.database.ids.integer that implement DoubleDBIDListIter Modifier and Type Class Description private class
DoubleIntegerDBIDArrayList.Itr
List iterator.private class
DoubleIntegerDBIDSubList.Itr
Iterator for the sublist.private class
IntegerDBIDKNNSubList.Itr
Iterator for the sublist. -
Uses of DoubleDBIDListIter in elki.evaluation.scores.adapter
Fields in elki.evaluation.scores.adapter declared as DoubleDBIDListIter Modifier and Type Field Description protected DoubleDBIDListIter
DistanceResultAdapter. iter
Original iteratorConstructors in elki.evaluation.scores.adapter with parameters of type DoubleDBIDListIter Constructor Description DistanceResultAdapter(DBIDs set, DoubleDBIDListIter iter, int size)
ConstructorFilteredDistanceResultAdapter(DBIDs set, DoubleDBIDListIter iter, int size, DBIDRef skip)
Constructor. -
Uses of DoubleDBIDListIter in elki.index.idistance
Methods in elki.index.idistance with parameters of type DoubleDBIDListIter Modifier and Type Method Description protected static void
InMemoryIDistanceIndex. binarySearch(ModifiableDoubleDBIDList index, DoubleDBIDListIter iter, double val)
Seek an iterator to the desired position, using binary search. -
Uses of DoubleDBIDListIter in elki.index.tree.metrical.covertree
Fields in elki.index.tree.metrical.covertree declared as DoubleDBIDListIter Modifier and Type Field Description private DoubleDBIDListIter
CoverTree.CoverTreePrioritySearcher. candidates
Candidates -
Uses of DoubleDBIDListIter in elki.index.tree.metrical.vptree
Fields in elki.index.tree.metrical.vptree declared as DoubleDBIDListIter Modifier and Type Field Description private DoubleDBIDListIter
VPTree.VPTreePrioritySearcher. candidates
Current iterator. -
Uses of DoubleDBIDListIter in elki.index.tree.spatial.kd
Fields in elki.index.tree.spatial.kd declared as DoubleDBIDListIter Modifier and Type Field Description private DoubleDBIDListIter
SmallMemoryKDTree.KDTreePrioritySearcher. iter
Search iterator.Methods in elki.index.tree.spatial.kd with parameters of type DoubleDBIDListIter Modifier and Type Method Description private double
SmallMemoryKDTree.KDTreeKNNSearcher. kdKNNSearch(int left, int right, int axis, O query, KNNHeap knns, DoubleDBIDListIter iter, double[] bounds, double rawdist, double maxdist)
Perform a kNN search on the k-d-tree.private void
SmallMemoryKDTree.KDTreeRangeSearcher. kdRangeSearch(int left, int right, int axis, O query, ModifiableDoubleDBIDList res, DoubleDBIDListIter iter, double[] bounds, double rawdist, double radius)
Perform a range search on the k-d-tree. -
Uses of DoubleDBIDListIter in elki.outlier.distance
Methods in elki.outlier.distance with parameters of type DoubleDBIDListIter Modifier and Type Method Description protected double
ReferenceBasedOutlierDetection. computeDensity(DoubleDBIDList referenceDists, DoubleDBIDListIter iter, int index)
Computes the density of an object.protected static double
SOS. computeH(DBIDRef ignore, DoubleDBIDListIter it, double[] p, double mbeta)
Compute H (observed perplexity) for row i, and the row pij_i.static double
SOS. computePi(DBIDRef ignore, DoubleDBIDListIter it, double[] p, double perplexity, double logPerp)
Compute row p[i], using binary search on the kernel bandwidth sigma to obtain the desired perplexity.protected static double
SOS. estimateInitialBeta(DBIDRef ignore, DoubleDBIDListIter it, double perplexity)
Estimate beta from the distances in a row. -
Uses of DoubleDBIDListIter in elki.outlier.intrinsic
Methods in elki.outlier.intrinsic with parameters of type DoubleDBIDListIter Modifier and Type Method Description protected static void
ISOS. adjustDistances(DBIDRef ignore, DoubleDBIDListIter ki, double max, double id, ModifiableDoubleDBIDList dists)
protected double
ISOS. estimateID(DBIDRef ignore, DoubleDBIDListIter it, double[] p)
Estimate the local intrinsic dimensionality.
-