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?
|
|
|
Try Apache Commons Math library. org.apache.commons.math3.linear package contains the functions that you want. Home page |
|||
|
|
|
The interface for COLT gives you a generic OP: As the javadocs for
So by using using an addition function as |
|||
|
|
|
You can use this one. It is very siple and supply basic matrix operations. You can add/substract/multiply etc 2d matrixes and vectors. |
|||
|
|
|
There is also la4j library that supports functional programming features as functors. You can use transform() method with manual hi-order function. |
|||
|
|
|
Some Java libraries for linear algebra are:
|
|||
|
|