Uses of Class
elki.utilities.datastructures.arraylike.IntegerArray
-
Packages that use IntegerArray Package Description elki.clustering.hierarchical.extraction Extraction of partitional clusterings from hierarchical results.elki.index.tree Tree-based index structures.elki.itemsetmining.associationrules Association rule mining.elki.math.geometry Algorithms from computational geometry.elki.persistent Persistent data management.elki.projection Data projections (see also preprocessing filters for basic projections).elki.utilities.datastructures.arraylike Common API for accessing objects that are "array-like", including lists, numerical vectors, database vectors and arrays. -
-
Uses of IntegerArray in elki.clustering.hierarchical.extraction
Fields in elki.clustering.hierarchical.extraction declared as IntegerArray Modifier and Type Field Description protected IntegerArray
AbstractCutDendrogram.Instance. leafTop
Topmost merge of each leaf. -
Uses of IntegerArray in elki.index.tree
Methods in elki.index.tree that return IntegerArray Modifier and Type Method Description IntegerArray
TreeIndexHeader. readEmptyPages(java.nio.channels.FileChannel file)
Read the empty pages from the end offile
.Methods in elki.index.tree with parameters of type IntegerArray Modifier and Type Method Description void
TreeIndexHeader. writeEmptyPages(IntegerArray emptyPages, java.nio.channels.FileChannel file)
Write the indices of empty pages the the end offile
. -
Uses of IntegerArray in elki.itemsetmining.associationrules
Fields in elki.itemsetmining.associationrules declared as IntegerArray Modifier and Type Field Description (package private) IntegerArray
AssociationRuleGeneration.ItemsetSearcher. offsets
Offsets into above array, based on length. -
Uses of IntegerArray in elki.math.geometry
Methods in elki.math.geometry with parameters of type IntegerArray Modifier and Type Method Description private void
AlphaShape. checkNeighbors(java.util.List<IntegerArray> open, long[] visited, IntegerArray stack)
Method parameters in elki.math.geometry with type arguments of type IntegerArray Modifier and Type Method Description private void
AlphaShape. addEdge(java.util.List<IntegerArray> open, int a, int b)
Add an edge to the corresponding polygon.private void
AlphaShape. checkNeighbors(java.util.List<IntegerArray> open, long[] visited, IntegerArray stack)
-
Uses of IntegerArray in elki.persistent
Fields in elki.persistent declared as IntegerArray Modifier and Type Field Description protected IntegerArray
AbstractStoringPageFile. emptyPages
A stack holding the empty page ids. -
Uses of IntegerArray in elki.projection
Methods in elki.projection with parameters of type IntegerArray Modifier and Type Method Description protected void
IntrinsicNearestNeighborAffinityMatrixBuilder. convertNeighbors(DBIDRange ids, DBIDRef ix, boolean square, KNNList neighbours, DoubleArray dist, IntegerArray ind, Mean m)
Load a neighbor query result into a double and and integer array, also removing the query point.protected void
NearestNeighborAffinityMatrixBuilder. convertNeighbors(DBIDRange ids, DBIDRef ix, boolean square, KNNList neighbours, DoubleArray dist, IntegerArray ind)
Load a neighbor query result into a double and and integer array, also removing the query point. -
Uses of IntegerArray in elki.utilities.datastructures.arraylike
Methods in elki.utilities.datastructures.arraylike with parameters of type IntegerArray Modifier and Type Method Description java.lang.Integer
IntegerArray. get(IntegerArray array, int off)
byte
IntegerArray. getByte(IntegerArray array, int off)
double
IntegerArray. getDouble(IntegerArray array, int off)
float
IntegerArray. getFloat(IntegerArray array, int off)
int
IntegerArray. getInteger(IntegerArray array, int off)
long
IntegerArray. getLong(IntegerArray array, int off)
short
IntegerArray. getShort(IntegerArray array, int off)
int
IntegerArray. size(IntegerArray array)
Constructors in elki.utilities.datastructures.arraylike with parameters of type IntegerArray Constructor Description IntegerArray(IntegerArray existing)
Constructor from an existing array.
-