Uses of Class
cern.colt.list.IntArrayList
Packages that use IntArrayList
Package
Description
Core base classes; Operations on primitive arrays such as sorting, partitioning and permuting.
Fixed sized (non resizable) streaming buffers connected to a target objects to which data is automatically flushed upon buffer overflow.
Resizable lists holding objects or primitive data types such as int,
double, etc.
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
Matrix interfaces and factories; efficient and flexible dense and sparse
1, 2, 3 and d-dimensional matrices holding objects or primitive data types such
as int, double, etc; Templated, fixed sized (not dynamically
resizable); Also known as multi-dimensional arrays or Data Cubes.
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix
, without subsetting or supersetting.Tools for basic and advanced statistics: Estimators, Gamma functions, Beta functions, Probabilities, Special integrals, etc.
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
Multisets (bags) with efficient statistics operations defined upon; This package
requires the Colt distribution.
-
Uses of IntArrayList in cern.colt
Methods in cern.colt with parameters of type IntArrayListModifier and TypeMethodDescriptionstatic void
Partitioning.partition
(DoubleArrayList list, int from, int to, DoubleArrayList splitters, IntArrayList splitIndexes) Equivalent to partition(list.elements(), from, to, splitters.elements(), 0, splitters.size()-1, splitIndexes.elements()).static void
Partitioning.partition
(IntArrayList list, int from, int to, IntArrayList splitters, IntArrayList splitIndexes) Equivalent to partition(list.elements(), from, to, splitters.elements(), 0, splitters.size()-1, splitIndexes.elements()). -
Uses of IntArrayList in cern.colt.buffer
Fields in cern.colt.buffer declared as IntArrayListModifier and TypeFieldDescriptionprotected IntArrayList
IntBuffer.list
protected IntArrayList
IntBuffer2D.xList
protected IntArrayList
IntBuffer3D.xList
protected IntArrayList
IntBuffer2D.yList
protected IntArrayList
IntBuffer3D.yList
protected IntArrayList
IntBuffer3D.zList
Methods in cern.colt.buffer with parameters of type IntArrayListModifier and TypeMethodDescriptionvoid
IntBuffer.addAllOf
(IntArrayList list) Adds all elements of the specified list to the receiver.void
IntBuffer2D.addAllOf
(IntArrayList x, IntArrayList y) Adds all specified points (x,y) to the receiver.void
IntBuffer2DConsumer.addAllOf
(IntArrayList x, IntArrayList y) Adds all specified (x,y) points to the receiver.void
IntBuffer3D.addAllOf
(IntArrayList xElements, IntArrayList yElements, IntArrayList zElements) Adds all specified (x,y,z) points to the receiver.void
IntBuffer3DConsumer.addAllOf
(IntArrayList x, IntArrayList y, IntArrayList z) Adds all specified (x,y,z) points to the receiver.void
IntBufferConsumer.addAllOf
(IntArrayList list) Adds all elements of the specified list to the receiver. -
Uses of IntArrayList in cern.colt.list
Methods in cern.colt.list that return IntArrayListModifier and TypeMethodDescriptionIntArrayList.copy()
Returns a deep copy of the receiver; usesclone()
and casts the result.Methods in cern.colt.list with parameters of type IntArrayListModifier and TypeMethodDescriptionvoid
AbstractIntList.addAllOf
(IntArrayList other) Appends all elements of the specified list to the receiver. -
Uses of IntArrayList in cern.colt.map
Methods in cern.colt.map that return IntArrayListModifier and TypeMethodDescriptionAbstractIntDoubleMap.keys()
Returns a list filled with all keys contained in the receiver.AbstractIntIntMap.keys()
Returns a list filled with all keys contained in the receiver.AbstractIntObjectMap.keys()
Returns a list filled with all keys contained in the receiver.AbstractDoubleIntMap.values()
Returns a list filled with all values contained in the receiver.AbstractIntIntMap.values()
Returns a list filled with all values contained in the receiver.Methods in cern.colt.map with parameters of type IntArrayListModifier and TypeMethodDescriptionvoid
AbstractIntDoubleMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
AbstractIntIntMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
AbstractIntObjectMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
OpenIntDoubleHashMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
OpenIntIntHashMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
OpenIntObjectHashMap.keys
(IntArrayList list) Fills all keys contained in the receiver into the specified list.void
AbstractIntDoubleMap.keysSortedByValue
(IntArrayList keyList) Fills all keys sorted ascending by their associated value into the specified list.void
AbstractIntIntMap.keysSortedByValue
(IntArrayList keyList) Fills all keys sorted ascending by their associated value into the specified list.void
AbstractIntObjectMap.keysSortedByValue
(IntArrayList keyList) Fills all keys sorted ascending by their associated value into the specified list.void
AbstractDoubleIntMap.pairsMatching
(DoubleIntProcedure condition, DoubleArrayList keyList, IntArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
AbstractIntDoubleMap.pairsMatching
(IntDoubleProcedure condition, IntArrayList keyList, DoubleArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
AbstractIntIntMap.pairsMatching
(IntIntProcedure condition, IntArrayList keyList, IntArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
AbstractIntObjectMap.pairsMatching
(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
OpenDoubleIntHashMap.pairsMatching
(DoubleIntProcedure condition, DoubleArrayList keyList, IntArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
OpenIntDoubleHashMap.pairsMatching
(IntDoubleProcedure condition, IntArrayList keyList, DoubleArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
OpenIntIntHashMap.pairsMatching
(IntIntProcedure condition, IntArrayList keyList, IntArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
OpenIntObjectHashMap.pairsMatching
(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.void
AbstractDoubleIntMap.pairsSortedByKey
(DoubleArrayList keyList, IntArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.void
AbstractIntDoubleMap.pairsSortedByKey
(IntArrayList keyList, DoubleArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.void
AbstractIntIntMap.pairsSortedByKey
(IntArrayList keyList, IntArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.void
AbstractIntObjectMap.pairsSortedByKey
(IntArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.void
AbstractDoubleIntMap.pairsSortedByValue
(DoubleArrayList keyList, IntArrayList valueList) Fills all keys and values sorted ascending by value into the specified lists.void
AbstractIntDoubleMap.pairsSortedByValue
(IntArrayList keyList, DoubleArrayList valueList) Fills all keys and values sorted ascending by value into the specified lists.void
AbstractIntIntMap.pairsSortedByValue
(IntArrayList keyList, IntArrayList valueList) Fills all keys and values sorted ascending by value into the specified lists.void
AbstractIntObjectMap.pairsSortedByValue
(IntArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by value according to natural ordering into the specified lists.void
AbstractDoubleIntMap.values
(IntArrayList list) Fills all values contained in the receiver into the specified list.void
AbstractIntIntMap.values
(IntArrayList list) Fills all values contained in the receiver into the specified list.void
OpenDoubleIntHashMap.values
(IntArrayList list) Fills all values contained in the receiver into the specified list.void
OpenIntIntHashMap.values
(IntArrayList list) Fills all values contained in the receiver into the specified list. -
Uses of IntArrayList in cern.colt.matrix
Methods in cern.colt.matrix with parameters of type IntArrayListModifier and TypeMethodDescriptionDoubleMatrix1D.assign
(DoubleMatrix1D y, DoubleDoubleFunction function, IntArrayList nonZeroIndexes) Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).void
DoubleMatrix1D.getNonZeros
(IntArrayList indexList, DoubleArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.void
DoubleMatrix1D.getNonZeros
(IntArrayList indexList, DoubleArrayList valueList, int maxCardinality) Fills the coordinates and values of cells having non-zero values into the specified lists.void
DoubleMatrix2D.getNonZeros
(IntArrayList rowList, IntArrayList columnList, DoubleArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.void
DoubleMatrix3D.getNonZeros
(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, DoubleArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.void
ObjectMatrix1D.getNonZeros
(IntArrayList indexList, ObjectArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.void
ObjectMatrix2D.getNonZeros
(IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.void
ObjectMatrix3D.getNonZeros
(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList) Fills the coordinates and values of cells having non-zero values into the specified lists.double
DoubleMatrix1D.zDotProduct
(DoubleMatrix1D y, int from, int length, IntArrayList nonZeroIndexes) Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).protected double
DoubleMatrix1D.zDotProduct
(DoubleMatrix1D y, IntArrayList nonZeroIndexes) Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]). -
Uses of IntArrayList in cern.colt.matrix.impl
Fields in cern.colt.matrix.impl declared as IntArrayListModifier and TypeFieldDescriptionprotected IntArrayList
RCDoubleMatrix2D.indexes
private IntArrayList[]
RCMDoubleMatrix2D.indexes
Methods in cern.colt.matrix.impl with parameters of type IntArrayListModifier and TypeMethodDescriptionprotected void
RCMDoubleMatrix2D.zMult
(DoubleMatrix1D y, DoubleMatrix1D z, IntArrayList nonZeroIndexes, DoubleMatrix1D[] allRows, double alpha, double beta) Linear algebraic matrix-vector multiplication; z = A * y. -
Uses of IntArrayList in cern.jet.stat
Methods in cern.jet.stat with parameters of type IntArrayListModifier and TypeMethodDescriptionstatic void
Descriptive.frequencies
(DoubleArrayList sortedData, DoubleArrayList distinctValues, IntArrayList frequencies) Computes the frequency (number of occurances, count) of each distinct value in the given sorted data. -
Uses of IntArrayList in cern.jet.stat.quantile
Methods in cern.jet.stat.quantile that return IntArrayListModifier and TypeMethodDescriptionprotected static IntArrayList
QuantileFinderTest.binaryMultiSearch
(DoubleArrayList list, double element) Finds the first and last indexes of a specific element within a sorted list. -
Uses of IntArrayList in hep.aida.bin
Methods in hep.aida.bin with parameters of type IntArrayListModifier and TypeMethodDescriptionvoid
DynamicBin1D.frequencies
(DoubleArrayList distinctElements, IntArrayList frequencies) Computes the frequency (number of occurances, count) of each distinct element.