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 was wondering whether any of the well-known matrix libraries for Java, such as Colt or EJML, actually provide similar functionality as MatLab? For instance, I can't seem to find anywhere in the definition of their API simple method to add or subtract two matrices/vectors by each other, which seems to be the most common operation used. Am I missing something?

share|improve this question

5 Answers

up vote 3 down vote accepted

Try Apache Commons Math library. org.apache.commons.math3.linear package contains the functions that you want. Home page

share|improve this answer
Yes, but that is probably less efficient then Colt or EJML – Bober02 May 30 '12 at 11:54

The interface for COLT gives you a generic OP: assign(matrix, function), which you can use to add or subtract matrices and vectors.

As the javadocs for assign() says:

Assigns the result of a function to each cell; x[row,col] =function(x[row,col],y[row,col]).

So by using using an addition function as function - you can add matrices.

share|improve this answer

You can use this one. It is very siple and supply basic matrix operations.

You can add/substract/multiply etc 2d matrixes and vectors.

share|improve this answer

There is also la4j library that supports functional programming features as functors. You can use transform() method with manual hi-order function.

share|improve this answer

Some Java libraries for linear algebra are:

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.