Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linear algebra library for the D programming language

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.

like image 321
BCS Avatar asked Mar 15 '09 20:03

BCS


1 Answers

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.

like image 168
Nikhil Avatar answered Sep 17 '22 23:09

Nikhil