2
$\begingroup$

I'm looking for some FOSS/GPL programs (or Python libraries) for dealing with sparse matrices. I haven't found much online about these. Can someone please point me in the right direction?

  • 1
    I have. No luck. It's mathematical, not programming. "Any programming language will do," I was told.2010-09-28

3 Answers 3

1

For general purpose, easy-to-use libraries, consider using tempelated libraries, such as MTL4, eigen, gmm++, ...etc. This article presents a bunch of them.

2

I haven't really seen any serious numerical computing being done in Python; FORTRAN is still standard, and Netlib has a number of (free!) libraries for solving sparse linear systems, sparse eigenproblems, ... etc. You are of course welcome to construct an interface from Python to these, or probably even better, translate these into Python. Good luck!

  • 0
    No problem, I realized it before I post it, but I just wanted to mention those for the record, next year nobody will ever notice that they are $1$ year apart. ;)2011-09-28
2

ARPACK is the most common and effective solution to problems involving large matrices (both sparse and dense). It's a FORTRAN library (with C++ bindings) and a very stable/mature one at that. I know personally that it is used extensively in academia, so I strongly recommend you give it a go.

In terms of Python, I believe SciPy/NumPY actually includes wrappers for ARPACK, though you'll need to investigate this a bit more. The actual implementation is written in C, so efficiency is not at all a problem.

  • 0
    @ixtmixilix: Agreed. It seems to attract a lot of the anal-retentive sort, oh well.2010-09-28