2

How can i easily make a transition from ejml to another library that supports sparse matrices?

salvador
  • 1,079
  • 3
  • 14
  • 28

2 Answers2

1

Try to look at la4j (Linear Algebra for Java). This library supports sparse entries. I am not sure about easy transition from EJML to la4j, since these library has a different API. But, I belive it should be possible.

The best way to get last version of la4j - use its GitHub page.

Vladimir Kostyukov
  • 2,492
  • 3
  • 21
  • 30
0

EJML now has support for sparse matrices. As of it's writing it supports most of the standard operations. For decompositions it supports LU, Cholesky, and QR.

lessthanoptimal
  • 2,722
  • 2
  • 23
  • 25