Colt 1.0.2

Uses of Interface
jal.DOUBLE.BinaryOperator

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

Uses of BinaryOperator in jal.DOUBLE
 

Methods in jal.DOUBLE with parameters of type BinaryOperator
static double Numeric.accumulate(double[] array, int first, int last, double init, BinaryOperator op)
          Generalized accumulation.
static double Numeric.inner_product(double[] array1, double[] array2, int first1, int last1, int first2, double init, BinaryOperator op1, BinaryOperator op2)
          Computes the generalized inner product of two ranges.
static int Numeric.partial_sum(double[] source, double[] 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(double[] source, double[] 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.
static void Modification.transform(double[] source1, double[] source2, double[] 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.
 


Colt 1.0.2

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