I'm new to Colt, p-Colt, and learning Java. I'm having trouble with the Colt documentation trying to decipher when to use things like:
DoubleFunctions.plus vs. Functions.plus (in cern.jet.math.tdouble.DoubleFunctions and cern.jet.math.Functions respectively)
For example, for matrix of type DoubleMatrix2D, this:
matrix.assign(C.matrix, Functions.plus);
Gives the decidedly unhelpful Eclipse tip:
The method assign(DoubleMatrix2D, DoubleDoubleFunction) in the type DoubleMatrix2D is not applicable for the arguments (DoubleMatrix2D, DoubleDoubleFunction)
While this:
C.matrix.assign(C.matrix, DoubleFunctions.plus);
Works just fine. (DoubleFunctions.plus is also a DoubleDoubleFunction).
When is each appropriate?