#include <shark/LinAlg/Base.h>
#include "Impl/pivotingRQ.inl"
Go to the source code of this file.
|
|
template<class MatrixT , class Mat > |
std::size_t | shark::blas::pivotingRQ (blas::matrix_expression< MatrixT > const &matrixA, blas::matrix_container< Mat > &matrixR, blas::matrix_container< Mat > &matrixQ, blas::permutation_matrix &permutation) |
| Determines the RQ Decomposition of the matrix A using pivoting returning the housholder transformation instead of Q. More...
|
|
template<class MatrixT , class MatrixU > |
std::size_t | shark::blas::pivotingRQHouseholder (blas::matrix_expression< MatrixT > const &matrixA, blas::matrix_container< MatrixU > &matrixR, blas::matrix_container< MatrixU > &householderV, blas::permutation_matrix &permutation) |
| Determines the RQ Decomposition of the matrix A using pivoting. More...
|
|