MyraMath
triu.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_TRIU_H
7 #define MYRAMATH_DENSE_TRIU_H
8 
31 #include <myramath/MYRAMATH_EXPORT.h>
33 
34 namespace myra {
35 
36 // Forward declarations.
37 template<class Number> class Matrix;
38 template<class Number> class CMatrixRange;
39 
41 MYRAMATH_EXPORT Matrix<NumberS> triu(const CMatrixRange<NumberS>& A);
43 MYRAMATH_EXPORT Matrix<NumberD> triu(const CMatrixRange<NumberD>& A);
44 MYRAMATH_EXPORT Matrix<NumberC> triu(const CMatrixRange<NumberC>& A);
45 MYRAMATH_EXPORT Matrix<NumberZ> triu(const CMatrixRange<NumberZ>& A);
47 
48 } // namespace myra
49 
50 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.