-1

I'm working with the sparse matrix, and I need to invert it. Actually, I'm looking for a some library, that can store and invert sparse matrixes. Does anyone knows some?

Amro
  • 123,847
  • 25
  • 243
  • 454
a3dsfcv
  • 1,146
  • 2
  • 20
  • 35

1 Answers1

1

Can't do better than NIST:

http://math.nist.gov/sparselib++/

duffymo
  • 305,152
  • 44
  • 369
  • 561
  • As far as I found, it was developed for Linux. Will it be working on Windows as well? Although can't find the function for matrix invert... – a3dsfcv Jun 18 '12 at 13:30
  • It's more common to use LU decomposition than full inversion, so that might explain why you don't find an invert function. Most practitioners of linear algebra don't invert matricies. – duffymo Jun 18 '12 at 14:01