Parallel Colt 0.9.4

Uses of Interface
cern.colt.function.tobject.ObjectObjectFunction

Packages that use ObjectObjectFunction
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. 
edu.emory.mathcs.utils Utility classes. 
 

Uses of ObjectObjectFunction in cern.colt.matrix.tobject
 

Methods in cern.colt.matrix.tobject with parameters of type ObjectObjectFunction
 Object ObjectMatrix1D.aggregate(ObjectMatrix1D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
          Applies a function to each corresponding cell of two matrices and aggregates the results.
 Object ObjectMatrix2D.aggregate(ObjectMatrix2D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
          Applies a function to each corresponding cell of two matrices and aggregates the results.
 Object ObjectMatrix3D.aggregate(ObjectMatrix3D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
          Applies a function to each corresponding cell of two matrices and aggregates the results.
 Object ObjectMatrix3D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
          Applies a function to each cell and aggregates the results.
 Object ObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
          Applies a function to each cell and aggregates the results.
 Object ObjectMatrix1D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
          Applies a function to each cell and aggregates the results.
 Object ObjectMatrix1D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList indexList)
          Applies a function to all cells with a given indexes and aggregates the results.
 Object ObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList rowList, IntArrayList columnList)
          Applies a function to all cells with a given indexes and aggregates the results.
 Object ObjectMatrix3D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList)
          Applies a function to all cells with a given indexes 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.
 Object ObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, ObjectProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 ObjectMatrix1D ObjectMatrix1D.assign(ObjectMatrix1D y, ObjectObjectFunction function)
          Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
 ObjectMatrix2D ObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function)
          Assigns the result of a function to each cell; x[row,col] = function(x[row,col],y[row,col]).
 ObjectMatrix2D ObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function, IntArrayList rowList, IntArrayList columnList)
          Assigns the result of a function to all cells with a given indexes
 ObjectMatrix3D ObjectMatrix3D.assign(ObjectMatrix3D y, ObjectObjectFunction function)
          Assigns the result of a function to each cell; x[row,col] = function(x[row,col],y[row,col]).
 ObjectMatrix3D ObjectMatrix3D.assign(ObjectMatrix3D y, ObjectObjectFunction function, IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList)
          Assigns the result of a function to all cells with a given indexes
 

Uses of ObjectObjectFunction in cern.colt.matrix.tobject.impl
 

Methods in cern.colt.matrix.tobject.impl with parameters of type ObjectObjectFunction
 Object DenseObjectMatrix1D.aggregate(ObjectMatrix1D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
           
 Object DenseObjectMatrix2D.aggregate(ObjectMatrix2D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
           
 Object DenseColumnObjectMatrix2D.aggregate(ObjectMatrix2D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
           
 Object DenseObjectMatrix3D.aggregate(ObjectMatrix3D other, ObjectObjectFunction aggr, ObjectObjectFunction f)
           
 Object DenseObjectMatrix3D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
           
 Object DenseObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
           
 Object DenseObjectMatrix1D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
           
 Object DenseColumnObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f)
           
 Object DenseObjectMatrix1D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList indexList)
           
 Object DenseObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList rowList, IntArrayList columnList)
           
 Object DenseColumnObjectMatrix2D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList rowList, IntArrayList columnList)
           
 Object DenseObjectMatrix3D.aggregate(ObjectObjectFunction aggr, ObjectFunction f, IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList)
           
 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)
           
 ObjectMatrix1D DenseObjectMatrix1D.assign(ObjectMatrix1D y, ObjectObjectFunction function)
          Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).
 ObjectMatrix2D WrapperObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function)
           
 ObjectMatrix2D DiagonalObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function)
           
 ObjectMatrix2D DenseObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function)
          Assigns the result of a function to each cell; x[row,col] = function(x[row,col],y[row,col]).
 ObjectMatrix2D DenseColumnObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function)
           
 ObjectMatrix2D DenseObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function, IntArrayList rowList, IntArrayList columnList)
           
 ObjectMatrix2D DenseColumnObjectMatrix2D.assign(ObjectMatrix2D y, ObjectObjectFunction function, IntArrayList rowList, IntArrayList columnList)
           
 ObjectMatrix3D DenseObjectMatrix3D.assign(ObjectMatrix3D y, ObjectObjectFunction function)
           
 ObjectMatrix3D DenseObjectMatrix3D.assign(ObjectMatrix3D y, ObjectObjectFunction function, IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList)
           
 

Uses of ObjectObjectFunction in edu.emory.mathcs.utils
 

Methods in edu.emory.mathcs.utils with parameters of type ObjectObjectFunction
static Object ConcurrencyUtils.waitForCompletion(Future<?>[] futures, ObjectObjectFunction aggr)
          Waits for all threads to complete computation and aggregates the result.
 


Parallel Colt 0.9.4

Jump to the Parallel Colt Homepage