9 Aug
2005
9 Aug
'05
3:09 p.m.
-----Ursprüngliche Nachricht----- Von: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] Im Auftrag von Vivid Yang Gesendet: Dienstag, 9. August 2005 16:40 An: boost-users@lists.boost.org Betreff: [mailinglist] [Boost-users] determinant of Matrices
Hi,
I browsed the document of ublas for a long time and did not find a convenient way to compute the determinant of a matrix. Isn't it a basic function of matrix or did I miss something?
In general you can use LU-decomposition or QR, as det(A) = det(LU) = det(L)*det(U) or det(A) = det(QR) = det(R) The determinant of L, U, R is the product of the elements on the diagonal. Greetings, Uwe.