for start, i am newbie in C++.
i am writing a program for my Master thesis which part of it suppose to solve regression in a recursive way.
I would like to solve:
Ax = y
In my case computation speed is not neglectable, that is way i would like to know if Boost::BLAS using
x = (A^T A)^{-1}A^Ty
will require less computation time then Lapackpp (I am using gentoo).
P.S. I was able to find at Lapackpp project site Class documentations but not examples. Could someone provides me some examples in case Lapack is faster then Boost::BLAS
Thanks
(A^T A)^{-1}A^Tis the psudo-inverse of A. You probably want to use the psudo-inverse function that comes with the library, rather than compute it with this formula. – Alejandro Jan 3 '11 at 20:19