vote up 3 vote down star
1

I'm looking for a package to do matrix math with matrices of up to about 100 x 100.

I need to, at a minimum, do inverses, multiplication and transposition. I'd prefer a more encapsulated interface over higher performance.

flag

50% accept rate
Is there any thing in the usuall place that suits your needs. I didn't answer this because I think you've probably tried there. dsource.org/projects – Ctrl Alt D-1337 Mar 17 at 3:36
I know there are a few linear algebra libs in there. What I don't know is how done they are. I'm sort of looking for "I've used X and it was good" answers. – BCS Mar 17 at 4:16

2 Answers

vote up 0 vote down

dsource.org/projects has been mentioned on this thread before, here are a few details.

Here are the D language bindings for the GNU Scientific Library (GSL).

Here is a link to GSL.

Here is some links to the documentation on BLAS support, decompositions (1, 2), eigenssystems, in GSL.

link|flag
vote up 1 vote down

Can't D make direct calls into C code? Or are you looking for a library written in D?

link|flag
C can't overload operators, and linking D and C++ is "non-trivial". A simple wrapper around lampack or whatever would be good but I want to do multiplication with code like "Matrix x = y*z; – BCS Mar 16 at 3:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.