Parallel Colt 0.7.2

Uses of Interface
cern.colt.function.tdouble.DoubleProcedure

Packages that use DoubleProcedure
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. 
 

Uses of DoubleProcedure in cern.colt.list.tdouble
 

Methods in cern.colt.list.tdouble with parameters of type DoubleProcedure
 boolean DoubleArrayList.forEach(DoubleProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 boolean AbstractDoubleList.forEach(DoubleProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 

Uses of DoubleProcedure in cern.colt.map.tdouble
 

Methods in cern.colt.map.tdouble with parameters of type DoubleProcedure
 boolean OpenDoubleIntHashMap.forEachKey(DoubleProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
abstract  boolean AbstractDoubleIntMap.forEachKey(DoubleProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
 

Uses of DoubleProcedure in cern.colt.matrix.tdouble
 

Methods in cern.colt.matrix.tdouble with parameters of type DoubleProcedure
 double DoubleMatrix3D.aggregate(DoubleDoubleFunction aggr, DoubleFunction f, DoubleProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 double DoubleMatrix2D.aggregate(DoubleDoubleFunction aggr, DoubleFunction f, DoubleProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 DoubleMatrix3D DoubleMatrix3D.assign(DoubleProcedure cond, double value)
          Assigns a value to all cells that satisfy a condition.
 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, DoubleFunction f)
          Assigns the result of a function 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.
 DoubleMatrix1D DoubleMatrix1D.viewSelection(DoubleProcedure condition)
          Constructs and returns a new selection view that is a matrix holding the cells matching the given condition.
 

Uses of DoubleProcedure in cern.colt.matrix.tdouble.impl
 

Methods in cern.colt.matrix.tdouble.impl with parameters of type DoubleProcedure
 double DenseDoubleMatrix3D.aggregate(DoubleDoubleFunction aggr, DoubleFunction f, DoubleProcedure cond)
           
 double DenseDoubleMatrix2D.aggregate(DoubleDoubleFunction aggr, DoubleFunction f, DoubleProcedure cond)
           
 double DenseColDoubleMatrix2D.aggregate(DoubleDoubleFunction aggr, DoubleFunction f, DoubleProcedure cond)
           
 DoubleMatrix3D DenseDoubleMatrix3D.assign(DoubleProcedure cond, double value)
           
 DoubleMatrix2D DenseDoubleMatrix2D.assign(DoubleProcedure cond, double value)
           
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleProcedure cond, double value)
           
 DoubleMatrix2D DenseColDoubleMatrix2D.assign(DoubleProcedure cond, double value)
           
 DoubleMatrix3D DenseDoubleMatrix3D.assign(DoubleProcedure cond, DoubleFunction f)
           
 DoubleMatrix2D DenseDoubleMatrix2D.assign(DoubleProcedure cond, DoubleFunction function)
           
 DoubleMatrix1D DenseDoubleMatrix1D.assign(DoubleProcedure cond, DoubleFunction function)
           
 DoubleMatrix2D DenseColDoubleMatrix2D.assign(DoubleProcedure cond, DoubleFunction function)
           
 

Uses of DoubleProcedure in cern.jet.math.tdouble
 

Methods in cern.jet.math.tdouble that return DoubleProcedure
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.
 

Uses of DoubleProcedure in cern.jet.stat.tdouble.quantile
 

Methods in cern.jet.stat.tdouble.quantile with parameters of type DoubleProcedure
 boolean ExactDoubleQuantileFinder.forEach(DoubleProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 boolean DoubleQuantileFinder.forEach(DoubleProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage