MyraMath
gelqf.h
Go to the documentation of this file.
1 // ========================================================================= //
2 // This file is part of MyraMath, copyright (c) 2014-2019 by Ryan A Chilton //
3 // and distributed by MyraCore, LLC. See LICENSE.txt for license terms. //
4 // ========================================================================= //
5 
6 #ifndef MYRAMATH_DENSE_GELQF_H
7 #define MYRAMATH_DENSE_GELQF_H
8 
51 #include <myramath/MYRAMATH_EXPORT.h>
53 
54 #include <myramath/dense/Vector.h>
55 
56 namespace myra {
57 
58 // Forward declarations.
59 template<class Number> class CMatrixRange;
60 template<class Number> class MatrixRange;
61 
63 MYRAMATH_EXPORT Vector<NumberS> gelqf_inplace(const MatrixRange<NumberS>& A);
65 MYRAMATH_EXPORT Vector<NumberD> gelqf_inplace(const MatrixRange<NumberD>& A);
66 MYRAMATH_EXPORT Vector<NumberC> gelqf_inplace(const MatrixRange<NumberC>& A);
67 MYRAMATH_EXPORT Vector<NumberZ> gelqf_inplace(const MatrixRange<NumberZ>& A);
69 
70 } // namespace
71 
72 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.
Container for either a column vector or row vector (depends upon the usage context) ...