Go to the source code of this file.
|
namespace | tarch |
| Have to include this header, as I need access to the SYCL_EXTERNAL keyword.
|
|
namespace | tarch::la |
| My collection of tiny vector operations.
|
|
|
template<int Rows, int Cols, typename Scalar > |
void | tarch::la::modifiedGramSchmidt (Matrix< Rows, Cols, Scalar > A, Matrix< Rows, Cols, Scalar > &Q, Matrix< Cols, Cols, Scalar > &R) |
| Produces an economy-size QR decomposition of a matrix A, A is changed.
|
|
void | tarch::la::modifiedGramSchmidt (DynamicMatrix A, DynamicMatrix &Q, DynamicMatrix &R) |
|