MyraMath
geqpf.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_GEQPF_H
7 #define MYRAMATH_DENSE_GEQPF_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
16 
17 #include <myramath/dense/Vector.h>
18 #include <vector>
19 
20 namespace myra {
21 
22 // Forward declarations.
23 template<class Number> class CMatrixRange;
24 template<class Number> class MatrixRange;
25 
27 MYRAMATH_EXPORT std::pair<std::vector<int>,Vector<NumberS> > geqpf_inplace(const MatrixRange<NumberS>& A);
29 MYRAMATH_EXPORT std::pair<std::vector<int>,Vector<NumberD> > geqpf_inplace(const MatrixRange<NumberD>& A);
30 MYRAMATH_EXPORT std::pair<std::vector<int>,Vector<NumberC> > geqpf_inplace(const MatrixRange<NumberC>& A);
31 MYRAMATH_EXPORT std::pair<std::vector<int>,Vector<NumberZ> > geqpf_inplace(const MatrixRange<NumberZ>& A);
33 
34 } // namespace
35 
36 #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) ...