TooN
|
Performs QR decomposition. More...
#include <QR.h>
Public Member Functions | |
template<int R, int C, class P , class B > | |
QR (const Matrix< R, C, P, B > &m_) | |
Construct the QR decomposition of a matrix. More... | |
const Matrix< Rows, Cols, Precision > & | get_R () |
Return R. | |
const Matrix< square_Size, square_Size, Precision, ColMajor > & | get_Q () |
Return Q. | |
Performs QR decomposition.
The QR decomposition operates on a matrix A. In general:
\[ A = QR \]
|
inline |
Construct the QR decomposition of a matrix.
This initialises the class, and performs the decomposition immediately.
m | The matrix to decompose |