Uses of Class
cern.colt.list.IntArrayList
-
Packages that use IntArrayList Package Description cern.colt Core base classes; Operations on primitive arrays such as sorting, partitioning and permuting.cern.colt.buffer Fixed sized (non resizable) streaming buffers connected to a target objects to which data is automatically flushed upon buffer overflow.cern.colt.list Resizable lists holding objects or primitive data types such as int, double, etc.cern.colt.map Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc.cern.colt.matrix 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.cern.colt.matrix.impl Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces ofcern.colt.matrix, without subsetting or supersetting.cern.jet.stat Tools for basic and advanced statistics: Estimators, Gamma functions, Beta functions, Probabilities, Special integrals, etc.cern.jet.stat.quantile Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.hep.aida.bin 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 IntArrayList Modifier and Type Method Description static voidPartitioning. 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 voidPartitioning. 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 IntArrayList Modifier and Type Field Description protected IntArrayListIntBuffer. listprotected IntArrayListIntBuffer2D. xListprotected IntArrayListIntBuffer3D. xListprotected IntArrayListIntBuffer2D. yListprotected IntArrayListIntBuffer3D. yListprotected IntArrayListIntBuffer3D. zListMethods in cern.colt.buffer with parameters of type IntArrayList Modifier and Type Method Description voidIntBuffer. addAllOf(IntArrayList list)Adds all elements of the specified list to the receiver.voidIntBuffer2D. addAllOf(IntArrayList x, IntArrayList y)Adds all specified points (x,y) to the receiver.voidIntBuffer2DConsumer. addAllOf(IntArrayList x, IntArrayList y)Adds all specified (x,y) points to the receiver.voidIntBuffer3D. addAllOf(IntArrayList xElements, IntArrayList yElements, IntArrayList zElements)Adds all specified (x,y,z) points to the receiver.voidIntBuffer3DConsumer. addAllOf(IntArrayList x, IntArrayList y, IntArrayList z)Adds all specified (x,y,z) points to the receiver.voidIntBufferConsumer. 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 IntArrayList Modifier and Type Method Description IntArrayListIntArrayList. copy()Returns a deep copy of the receiver; usesclone()and casts the result.Methods in cern.colt.list with parameters of type IntArrayList Modifier and Type Method Description voidAbstractIntList. 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 IntArrayList Modifier and Type Method Description IntArrayListAbstractIntDoubleMap. keys()Returns a list filled with all keys contained in the receiver.IntArrayListAbstractIntIntMap. keys()Returns a list filled with all keys contained in the receiver.IntArrayListAbstractIntObjectMap. keys()Returns a list filled with all keys contained in the receiver.IntArrayListAbstractDoubleIntMap. values()Returns a list filled with all values contained in the receiver.IntArrayListAbstractIntIntMap. values()Returns a list filled with all values contained in the receiver.Methods in cern.colt.map with parameters of type IntArrayList Modifier and Type Method Description voidAbstractIntDoubleMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidAbstractIntIntMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidAbstractIntObjectMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidOpenIntDoubleHashMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidOpenIntIntHashMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidOpenIntObjectHashMap. keys(IntArrayList list)Fills all keys contained in the receiver into the specified list.voidAbstractIntDoubleMap. keysSortedByValue(IntArrayList keyList)Fills all keys sorted ascending by their associated value into the specified list.voidAbstractIntIntMap. keysSortedByValue(IntArrayList keyList)Fills all keys sorted ascending by their associated value into the specified list.voidAbstractIntObjectMap. keysSortedByValue(IntArrayList keyList)Fills all keys sorted ascending by their associated value into the specified list.voidAbstractDoubleIntMap. pairsMatching(DoubleIntProcedure condition, DoubleArrayList keyList, IntArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidAbstractIntDoubleMap. pairsMatching(IntDoubleProcedure condition, IntArrayList keyList, DoubleArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidAbstractIntIntMap. pairsMatching(IntIntProcedure condition, IntArrayList keyList, IntArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidAbstractIntObjectMap. pairsMatching(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidOpenDoubleIntHashMap. pairsMatching(DoubleIntProcedure condition, DoubleArrayList keyList, IntArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidOpenIntDoubleHashMap. pairsMatching(IntDoubleProcedure condition, IntArrayList keyList, DoubleArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidOpenIntIntHashMap. pairsMatching(IntIntProcedure condition, IntArrayList keyList, IntArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidOpenIntObjectHashMap. pairsMatching(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList)Fills all pairs satisfying a given condition into the specified lists.voidAbstractDoubleIntMap. pairsSortedByKey(DoubleArrayList keyList, IntArrayList valueList)Fills all keys and values sorted ascending by key into the specified lists.voidAbstractIntDoubleMap. pairsSortedByKey(IntArrayList keyList, DoubleArrayList valueList)Fills all keys and values sorted ascending by key into the specified lists.voidAbstractIntIntMap. pairsSortedByKey(IntArrayList keyList, IntArrayList valueList)Fills all keys and values sorted ascending by key into the specified lists.voidAbstractIntObjectMap. pairsSortedByKey(IntArrayList keyList, ObjectArrayList valueList)Fills all keys and values sorted ascending by key into the specified lists.voidAbstractDoubleIntMap. pairsSortedByValue(DoubleArrayList keyList, IntArrayList valueList)Fills all keys and values sorted ascending by value into the specified lists.voidAbstractIntDoubleMap. pairsSortedByValue(IntArrayList keyList, DoubleArrayList valueList)Fills all keys and values sorted ascending by value into the specified lists.voidAbstractIntIntMap. pairsSortedByValue(IntArrayList keyList, IntArrayList valueList)Fills all keys and values sorted ascending by value into the specified lists.voidAbstractIntObjectMap. pairsSortedByValue(IntArrayList keyList, ObjectArrayList valueList)Fills all keys and values sorted ascending by value according to natural ordering into the specified lists.voidAbstractDoubleIntMap. values(IntArrayList list)Fills all values contained in the receiver into the specified list.voidAbstractIntIntMap. values(IntArrayList list)Fills all values contained in the receiver into the specified list.voidOpenDoubleIntHashMap. values(IntArrayList list)Fills all values contained in the receiver into the specified list.voidOpenIntIntHashMap. 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 IntArrayList Modifier and Type Method Description DoubleMatrix1DDoubleMatrix1D. assign(DoubleMatrix1D y, DoubleDoubleFunction function, IntArrayList nonZeroIndexes)Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).voidDoubleMatrix1D. getNonZeros(IntArrayList indexList, DoubleArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidDoubleMatrix1D. getNonZeros(IntArrayList indexList, DoubleArrayList valueList, int maxCardinality)Fills the coordinates and values of cells having non-zero values into the specified lists.voidDoubleMatrix2D. getNonZeros(IntArrayList rowList, IntArrayList columnList, DoubleArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidDoubleMatrix3D. getNonZeros(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, DoubleArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidObjectMatrix1D. getNonZeros(IntArrayList indexList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidObjectMatrix2D. getNonZeros(IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidObjectMatrix3D. getNonZeros(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.doubleDoubleMatrix1D. 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 doubleDoubleMatrix1D. 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 IntArrayList Modifier and Type Field Description protected IntArrayListRCDoubleMatrix2D. indexesprivate IntArrayList[]RCMDoubleMatrix2D. indexesMethods in cern.colt.matrix.impl with parameters of type IntArrayList Modifier and Type Method Description protected voidRCMDoubleMatrix2D. 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 IntArrayList Modifier and Type Method Description static voidDescriptive. 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 IntArrayList Modifier and Type Method Description protected static IntArrayListQuantileFinderTest. 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 IntArrayList Modifier and Type Method Description voidDynamicBin1D. frequencies(DoubleArrayList distinctElements, IntArrayList frequencies)Computes the frequency (number of occurances, count) of each distinct element.
-