Does the Boost UBLAS library have a built-in solver for solving systems of equations? The documentation implies that all the ublas solver routines require the matrix to already be in triangular form.

But, if a matrix is not in triangular form, is there anything in ublas that can reduce the matrix and then back-substitute, to solve a system of equations?

link|improve this question
feedback

1 Answer

LU decomposition

link|improve this answer
Doesn't LU decomposition require the matrices to be triangular? – Charles Salvia Aug 31 '09 at 11:40
No, it's by definition decomposition into triangular matrices. Then they can be solved by triangular solver. I don't remember ublas syntax for it - it was quite messy - but idea is the same: decompose, then use triangular solver. – ima Aug 31 '09 at 11:50
feedback

Your Answer

 
or
required, but never shown