Parallel Colt 0.7.2

Uses of Interface
cern.colt.function.tfloat.FloatProcedure

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

Uses of FloatProcedure in cern.colt.list.tfloat
 

Methods in cern.colt.list.tfloat with parameters of type FloatProcedure
 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.
 

Uses of FloatProcedure in cern.colt.map.tfloat
 

Methods in cern.colt.map.tfloat with parameters of type FloatProcedure
 boolean OpenFloatIntHashMap.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.
 

Uses of FloatProcedure in cern.colt.matrix.tfloat
 

Methods in cern.colt.matrix.tfloat with parameters of type FloatProcedure
 float FloatMatrix3D.aggregate(FloatFloatFunction aggr, FloatFunction f, FloatProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 float FloatMatrix2D.aggregate(FloatFloatFunction aggr, FloatFunction f, FloatProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 FloatMatrix3D FloatMatrix3D.assign(FloatProcedure cond, float value)
          Assigns a value to all cells that satisfy a condition.
 FloatMatrix2D FloatMatrix2D.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.
 FloatMatrix3D FloatMatrix3D.assign(FloatProcedure cond, FloatFunction f)
          Assigns the result of a function 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.
 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.
 

Uses of FloatProcedure in cern.colt.matrix.tfloat.impl
 

Methods in cern.colt.matrix.tfloat.impl with parameters of type FloatProcedure
 float DenseFloatMatrix3D.aggregate(FloatFloatFunction aggr, FloatFunction f, FloatProcedure cond)
           
 float DenseFloatMatrix2D.aggregate(FloatFloatFunction aggr, FloatFunction f, FloatProcedure cond)
           
 float DenseColFloatMatrix2D.aggregate(FloatFloatFunction aggr, FloatFunction f, FloatProcedure cond)
           
 FloatMatrix3D DenseFloatMatrix3D.assign(FloatProcedure cond, float value)
           
 FloatMatrix2D DenseFloatMatrix2D.assign(FloatProcedure cond, float value)
           
 FloatMatrix1D DenseFloatMatrix1D.assign(FloatProcedure cond, float value)
           
 FloatMatrix2D DenseColFloatMatrix2D.assign(FloatProcedure cond, float value)
           
 FloatMatrix3D DenseFloatMatrix3D.assign(FloatProcedure cond, FloatFunction f)
           
 FloatMatrix2D DenseFloatMatrix2D.assign(FloatProcedure cond, FloatFunction function)
           
 FloatMatrix1D DenseFloatMatrix1D.assign(FloatProcedure cond, FloatFunction function)
           
 FloatMatrix2D DenseColFloatMatrix2D.assign(FloatProcedure cond, FloatFunction function)
           
 

Uses of FloatProcedure in cern.jet.math.tfloat
 

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

Uses of FloatProcedure in cern.jet.stat.tfloat.quantile
 

Methods in cern.jet.stat.tfloat.quantile with parameters of type FloatProcedure
 boolean FloatQuantileFinder.forEach(FloatProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage