Package | Description |
---|---|
cern.colt.list.tfloat |
Resizable list holding elements of float data type.
|
cern.colt.map.tfloat |
Automatically growing and shrinking map holding elements of float data type.
|
cern.colt.matrix.tfloat |
Matrix interfaces and factories holding elements of float data type.
|
cern.colt.matrix.tfloat.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of float data type.
|
cern.jet.math.tfloat |
Tools for basic and advanced mathematics: Arithmetics and Function Objects for generic function evaluation operating on float data type.
|
cern.jet.stat.tfloat.quantile |
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FloatArrayList.forEach(FloatProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
boolean |
AbstractFloatList.forEach(FloatProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractFloatLongMap.forEachKey(FloatProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenFloatLongHashMap.forEachKey(FloatProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
abstract boolean |
AbstractFloatIntMap.forEachKey(FloatProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenFloatIntHashMap.forEachKey(FloatProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
float |
FloatMatrix2D.aggregate(FloatFloatFunction aggr,
FloatFunction f,
FloatProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
float |
FloatMatrix3D.aggregate(FloatFloatFunction aggr,
FloatFunction f,
FloatProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
FloatMatrix2D |
FloatMatrix2D.assign(FloatProcedure cond,
float value)
Assigns a value to all cells that satisfy a condition.
|
FloatMatrix3D |
FloatMatrix3D.assign(FloatProcedure cond,
float value)
Assigns a value to all cells that satisfy a condition.
|
FloatMatrix1D |
FloatMatrix1D.assign(FloatProcedure cond,
float value)
Assigns a value to all cells that satisfy a condition.
|
FloatMatrix2D |
FloatMatrix2D.assign(FloatProcedure cond,
FloatFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
FloatMatrix3D |
FloatMatrix3D.assign(FloatProcedure cond,
FloatFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
FloatMatrix1D |
FloatMatrix1D.assign(FloatProcedure cond,
FloatFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
FloatMatrix1D |
FloatMatrix1D.viewSelection(FloatProcedure 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 |
---|---|
float |
DenseFloatMatrix2D.aggregate(FloatFloatFunction aggr,
FloatFunction f,
FloatProcedure cond) |
float |
DenseFloatMatrix3D.aggregate(FloatFloatFunction aggr,
FloatFunction f,
FloatProcedure cond) |
float |
DenseColumnFloatMatrix2D.aggregate(FloatFloatFunction aggr,
FloatFunction f,
FloatProcedure cond) |
FloatMatrix2D |
DenseFloatMatrix2D.assign(FloatProcedure cond,
float value) |
FloatMatrix1D |
DenseFloatMatrix1D.assign(FloatProcedure cond,
float value) |
FloatMatrix3D |
DenseFloatMatrix3D.assign(FloatProcedure cond,
float value) |
FloatMatrix2D |
DenseColumnFloatMatrix2D.assign(FloatProcedure cond,
float value) |
FloatMatrix2D |
DenseFloatMatrix2D.assign(FloatProcedure cond,
FloatFunction function) |
FloatMatrix1D |
DenseFloatMatrix1D.assign(FloatProcedure cond,
FloatFunction function) |
FloatMatrix3D |
DenseFloatMatrix3D.assign(FloatProcedure cond,
FloatFunction f) |
FloatMatrix2D |
DenseColumnFloatMatrix2D.assign(FloatProcedure cond,
FloatFunction function) |
Modifier and Type | Method and Description |
---|---|
static FloatProcedure |
FloatFunctions.isBetween(float from,
float to)
Constructs a function that returns from<=a && a<=to.
|
static FloatProcedure |
FloatFunctions.isEqual(float b)
Constructs a function that returns a == b.
|
static FloatProcedure |
FloatFunctions.isGreater(float b)
Constructs a function that returns a > b.
|
static FloatProcedure |
FloatFunctions.isLess(float b)
Constructs a function that returns a < b.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FloatQuantileFinder.forEach(FloatProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Jump to the Parallel Colt Homepage