Colt 1.0.3

Uses of Interface
jal.FLOAT.BinaryOperator

Packages that use BinaryOperator
jal.FLOAT Algorithms on float arrays; A partial STL port by the C++ Standard Template Library authors. 
 

Uses of BinaryOperator in jal.FLOAT
 

Methods in jal.FLOAT with parameters of type BinaryOperator
static void Modification.transform(float[] source1, float[] source2, float[] destination, int first1, int last1, int first2, int to, BinaryOperator f)
          Performs a binary operation on elements of two ranges, assigning the result to elements of another range.
static float Numeric.accumulate(float[] array, int first, int last, float init, BinaryOperator op)
          Generalized accumulation.
static float Numeric.inner_product(float[] array1, float[] array2, int first1, int last1, int first2, float init, BinaryOperator op1, BinaryOperator op2)
          Computes the generalized inner product of two ranges.
static int Numeric.partial_sum(float[] source, float[] dest, int first, int last, int to, BinaryOperator op)
          Computes the generalized partial sums of elements in an input range and assigns them to elements in an output range.
static int Numeric.adjacent_difference(float[] source, float[] dest, int first, int last, int to, BinaryOperator op)
          Computes a binary operation op for each pair of adjacent elements in the input range and assigns the results to an output range.
 


Colt 1.0.3

Submit a bug or feature. Check the Colt home page for the latest news.