Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.