Package | Description |
---|---|
cern.colt.list.tdouble |
Resizable list holding elements of double data type.
|
cern.colt.map.tdouble |
Automatically growing and shrinking map holding elements of double data type.
|
cern.colt.matrix.tdouble |
Matrix interfaces and factories holding elements of double data type.
|
cern.colt.matrix.tdouble.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of double data type.
|
cern.jet.math.tdouble |
Tools for basic and advanced mathematics: Arithmetics and Algebra, Polynomials and Chebyshev series, Bessel and Airy functions,
Function Objects for generic function evaluation, etc.
|
cern.jet.stat.tdouble.quantile |
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractDoubleList.forEach(DoubleProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
boolean |
DoubleArrayList.forEach(DoubleProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractDoubleIntMap.forEachKey(DoubleProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenDoubleLongHashMap.forEachKey(DoubleProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenDoubleIntHashMap.forEachKey(DoubleProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
abstract boolean |
AbstractDoubleLongMap.forEachKey(DoubleProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
double |
DoubleMatrix2D.aggregate(DoubleDoubleFunction aggr,
DoubleFunction f,
DoubleProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
double |
DoubleMatrix3D.aggregate(DoubleDoubleFunction aggr,
DoubleFunction f,
DoubleProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
DoubleMatrix2D |
DoubleMatrix2D.assign(DoubleProcedure cond,
double value)
Assigns a value to all cells that satisfy a condition.
|
DoubleMatrix1D |
DoubleMatrix1D.assign(DoubleProcedure cond,
double value)
Assigns a value to all cells that satisfy a condition.
|
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleProcedure cond,
double value)
Assigns a value to all cells that satisfy a condition.
|
DoubleMatrix2D |
DoubleMatrix2D.assign(DoubleProcedure cond,
DoubleFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
DoubleMatrix1D |
DoubleMatrix1D.assign(DoubleProcedure cond,
DoubleFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
DoubleMatrix3D |
DoubleMatrix3D.assign(DoubleProcedure cond,
DoubleFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
DoubleMatrix1D |
DoubleMatrix1D.viewSelection(DoubleProcedure 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 |
---|---|
double |
DenseDoubleMatrix2D.aggregate(DoubleDoubleFunction aggr,
DoubleFunction f,
DoubleProcedure cond) |
double |
DenseDoubleMatrix3D.aggregate(DoubleDoubleFunction aggr,
DoubleFunction f,
DoubleProcedure cond) |
double |
DenseColumnDoubleMatrix2D.aggregate(DoubleDoubleFunction aggr,
DoubleFunction f,
DoubleProcedure cond) |
DoubleMatrix1D |
DenseDoubleMatrix1D.assign(DoubleProcedure cond,
double value) |
DoubleMatrix2D |
DenseDoubleMatrix2D.assign(DoubleProcedure cond,
double value) |
DoubleMatrix3D |
DenseDoubleMatrix3D.assign(DoubleProcedure cond,
double value) |
DoubleMatrix2D |
DenseColumnDoubleMatrix2D.assign(DoubleProcedure cond,
double value) |
DoubleMatrix1D |
DenseDoubleMatrix1D.assign(DoubleProcedure cond,
DoubleFunction function) |
DoubleMatrix2D |
DenseDoubleMatrix2D.assign(DoubleProcedure cond,
DoubleFunction function) |
DoubleMatrix3D |
DenseDoubleMatrix3D.assign(DoubleProcedure cond,
DoubleFunction f) |
DoubleMatrix2D |
DenseColumnDoubleMatrix2D.assign(DoubleProcedure cond,
DoubleFunction function) |
Modifier and Type | Method and Description |
---|---|
static DoubleProcedure |
DoubleFunctions.isBetween(double from,
double to)
Constructs a function that returns from<=a && a<=to.
|
static DoubleProcedure |
DoubleFunctions.isEqual(double b)
Constructs a function that returns a == b.
|
static DoubleProcedure |
DoubleFunctions.isGreater(double b)
Constructs a function that returns a > b.
|
static DoubleProcedure |
DoubleFunctions.isLess(double b)
Constructs a function that returns a < b.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DoubleQuantileFinder.forEach(DoubleProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
boolean |
ExactDoubleQuantileFinder.forEach(DoubleProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Jump to the Parallel Colt Homepage