Konstantinos_S
Konstantinos_S

Reputation: 65

Java library for 3D matrix operations

I'm searching for a library able to perform operations (such as inverse,transpose,addition,subtraction, etc.) on 3D matrices.

So far, I have tried Apache Commons Math and Colt libraries, but none of them seems to be good in dealing with 3D matrices...

Any suggestions?...

Upvotes: 1

Views: 1753

Answers (3)

martinez314
martinez314

Reputation: 12332

JAMA has worked well for me. I've used it for concatenating and inverting 4x4 matrices, among other functions. Works well, easy to learn API, does everything I need it to.

Upvotes: 0

Alnitak
Alnitak

Reputation: 339796

There's a "standard" Java library for 3D vector and matrix operations - javax.vecmath from Java 3D.

Upvotes: 1

Vidya
Vidya

Reputation: 30310

If you like R, JRI could be a good solution.

Also, if you have a lot of data and like R, try RHIPE.

Upvotes: 0

Related Questions