Java matrix libraries [closed]

Some Java libraries for linear algebra are:

EDIT maybe we can extend this list whenever one comes across and you know – the world keeps moving:

Note: Personally: I use Apache Commons Math and Colt in my own project (http://www.finmath.net). While commons math is actively developed, I found that Colt is still faster in some tasks (like Eigenvalue decomposition). For that reason I use some kind of wrapper which allows me to quickly switch the underlying library (I only need a few things like solving systems of equations and Eigenvalue decomposition).

Leave a Comment