Package | Description |
---|---|
cern.colt.list.tobject |
Resizable list holding elements of Object data type.
|
cern.colt.matrix.tobject |
Matrix interfaces and factories holding elements of Object data type.
|
cern.colt.matrix.tobject.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of Object data type.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ObjectArrayList.forEach(ObjectProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
Object |
ObjectMatrix2D.aggregate(ObjectObjectFunction aggr,
ObjectFunction f,
ObjectProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
Object |
ObjectMatrix3D.aggregate(ObjectObjectFunction aggr,
ObjectFunction f,
ObjectProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
ObjectMatrix2D |
ObjectMatrix2D.assign(ObjectProcedure cond,
Object value)
Assigns a value to all cells that satisfy a condition.
|
ObjectMatrix3D |
ObjectMatrix3D.assign(ObjectProcedure cond,
Object value)
Assigns a value to all cells that satisfy a condition.
|
ObjectMatrix2D |
ObjectMatrix2D.assign(ObjectProcedure cond,
ObjectFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
ObjectMatrix3D |
ObjectMatrix3D.assign(ObjectProcedure cond,
ObjectFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
ObjectMatrix1D |
ObjectMatrix1D.viewSelection(ObjectProcedure condition)
Constructs and returns a new selection view that is a matrix
holding the cells matching the given condition.
|
Modifier and Type | Method and Description |
---|---|
Object |
DenseObjectMatrix3D.aggregate(ObjectObjectFunction aggr,
ObjectFunction f,
ObjectProcedure cond) |
Object |
DenseObjectMatrix2D.aggregate(ObjectObjectFunction aggr,
ObjectFunction f,
ObjectProcedure cond) |
Object |
DenseColumnObjectMatrix2D.aggregate(ObjectObjectFunction aggr,
ObjectFunction f,
ObjectProcedure cond) |
ObjectMatrix3D |
DenseObjectMatrix3D.assign(ObjectProcedure cond,
Object value) |
ObjectMatrix2D |
DenseObjectMatrix2D.assign(ObjectProcedure cond,
Object value) |
ObjectMatrix2D |
DenseColumnObjectMatrix2D.assign(ObjectProcedure cond,
Object value) |
ObjectMatrix3D |
DenseObjectMatrix3D.assign(ObjectProcedure cond,
ObjectFunction f) |
ObjectMatrix2D |
DenseObjectMatrix2D.assign(ObjectProcedure cond,
ObjectFunction function) |
ObjectMatrix2D |
DenseColumnObjectMatrix2D.assign(ObjectProcedure cond,
ObjectFunction function) |
Jump to the Parallel Colt Homepage