MyraMath
gebrd.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_GEBRD_H
7 #define MYRAMATH_DENSE_GEBRD_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
16 
17 #include <utility>
18 
19 namespace myra {
20 
21 // Forward declarations.
22 template<class Number> class MatrixRange;
23 template<class Number> class VectorRange;
24 template<class Number> class Vector;
25 
27 // Overwrites the diagonal and first superdiagonal (I >= J) or subdiagonal (I < J) of A with B. The lower triangle of A is overwritten with the
29 // Householder column vectors of Q (like geqrf), and the upper triangle of A is overwritten with the Householder row vectors of P (like gelqf).
30 MYRAMATH_EXPORT std::pair<Vector<NumberS>,Vector<NumberS> > gebrd_inplace(const MatrixRange<NumberS>& A);
31 MYRAMATH_EXPORT std::pair<Vector<NumberD>,Vector<NumberD> > gebrd_inplace(const MatrixRange<NumberD>& A);
32 MYRAMATH_EXPORT std::pair<Vector<NumberC>,Vector<NumberC> > gebrd_inplace(const MatrixRange<NumberC>& A);
33 MYRAMATH_EXPORT std::pair<Vector<NumberZ>,Vector<NumberZ> > gebrd_inplace(const MatrixRange<NumberZ>& A);
35 
36 } // namespace
37 
38 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.