Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inverse of a matrix in java

I would like to calculate an inverse of matrix in java. Are there any already existing packages which calculate inverse of matrix. I found similar question, but the answers in the questions are not so strongly recommending to use anyof the packages. Even i could not follow the method they are using. I have a large matrix of 10000s of rows and columns. I would like to calculate inverse of it.

like image 318
thetna Avatar asked Sep 02 '25 16:09

thetna


1 Answers

Apache Commons Math have support for linear algebra

like image 98
JustDanyul Avatar answered Sep 04 '25 21:09

JustDanyul