This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Solving linear equation systems including sparse matrices
Gregor Franz
Greenhorn
Joined: Nov 22, 2012
Posts: 1
posted
0
Hi everyone,
Working on a Java project, I face the following problem:
I would like to solve a linear equation system of the form
A * x = b.
Therein, the matrix ‘A’ and both vectors ‘x’ and ‘b’ contain several thousand array elements. ‘A’, however, is a sparse matrix and only a small number of diagonals of ‘A’ may contain values that differ from zero.
The use of Java standard solvers results in very long computation times as these solvers normally do not use the specific properties of sparse matrices. Therefore I would like to ask if someone knows packages that include linear equation solvers which are able to solve systems as described above in a reasonable time.
I would be very grateful for any hint.
Thanks a lot in advance and best regards
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
The Apache Commons Math library can handle linear equation systems, but it's not optimized for sparse matrices, so it'll most likely not work with systems of this size.
The Colt library hasn't been updated in a long time, but it does claim to support sparse matrices, so may be worth checking out.