I need to solve a system of linear equations in my program. Is there a simple linear algebra library for C++, preferably comprised of no more than a few headers? I've been looking for nearly an hour, and all the ones I found require messing around with Linux, compiling DLLs in MinGW, etc. etc. etc. (I'm using Visual Studio 2008.)
closed as not constructive by casperOne♦ Sep 11 '12 at 11:30
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I think Eigen is what you're looking for. http://eigen.tuxfamily.org/index.php?title=Main_Page It is a headers only library and compiles on many compilers. It even uses exotic assembly for faster math. This is the page that shows off the linear solver api. http://eigen.tuxfamily.org/dox/TutorialAdvancedLinearAlgebra.html It has a few solvers with a simple api. |
|||
|
|
|
Boost has some basic linear algebra stuff. |
|||||||||
|
|
You can use the C++ bindings of LAPACK. A quick google turned up this link to some LAPACK for Windows libraries. Depending on the how big your systems are all this might be overkill though. |
||||
|
|
|
I am a big fan of Armadillo but your compiler may be an issue here according to the the end of the download page:
It is worth trying out as this is a well-designated (and mostly templated) library. Otherwise, maybe try Eigen2 which lists your compiler as supported. Edit: In response to the comment, Armadillo does not require Lapack but works better with it (and better still with tuned Blas):
|
|||||||
|