Reputation: 65
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
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