I have a dense system of equations of type Ax=b to solve in my C++ program, and I was hoping to implement the solution using UBLAS in boost. In some other questions I found that people were using the extension LAPACK, but unfortunately it doesn't seem to be part of my standard boost installation (in Debian at least) and I am not allowed to add more dependencies.

Could someone paste a solution that doesn't use LAPACK or any other libraries?

link|improve this question

1  
If you are not forced to use uBlas, then have a look at eigen.tuxfamily.org/index.php?title=Main_Page – Anonymous Mar 30 at 9:06
feedback

1 Answer

up vote 3 down vote accepted

Unfortunately, you're solving a linear system which either requires LAPACK or writing your own code. If you don't want LAPACK, your only other option is to write your own solver. Such a solver can use uBLAS of course.

If you need the code to do it, you can look at numerical recipes for an example. But, solving dense linear systems is a very rich subject, so it's probably beyond the scope here to address all aspects of it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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