MyraMath
sytrd.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_SYTRD_H
7 #define MYRAMATH_DENSE_SYTRD_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
16 
17 namespace myra {
18 
19 // Forward declarations.
20 template<class Number> class MatrixRange;
21 template<class Number> class VectorRange;
22 template<class Number> class Vector;
23 
25 // Overwrites the diagonal and first super/subdiagonal of A with T. The vector tau, as well as the 'L'ower or
27 // 'U'pper triangle of A is overwritten with Householder reflectors. The other triangle of A remains untouched.
28 MYRAMATH_EXPORT Vector<NumberS> sytrd_inplace(char uplo, const MatrixRange<NumberS>& A);
29 MYRAMATH_EXPORT Vector<NumberD> sytrd_inplace(char uplo, const MatrixRange<NumberD>& A);
31 
32 } // namespace
33 
34 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.