MyraMath
rangespace.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_RANGESPACE_H
7 #define MYRAMATH_DENSE_RANGESPACE_H
8 
15 
16 namespace myra {
17 
18 // Forward declarations.
19 template<class Number> class Matrix;
20 template<class Number> class CMatrixRange;
21 
23 MYRAMATH_EXPORT Matrix<NumberS> rangespace(const CMatrixRange<NumberS>& A, float tolerance = 1.0e-5 );
25 MYRAMATH_EXPORT Matrix<NumberD> rangespace(const CMatrixRange<NumberD>& A, double tolerance = 1.0e-10);
26 MYRAMATH_EXPORT Matrix<NumberC> rangespace(const CMatrixRange<NumberC>& A, float tolerance = 1.0e-5 );
27 MYRAMATH_EXPORT Matrix<NumberZ> rangespace(const CMatrixRange<NumberZ>& A, double tolerance = 1.0e-10);
29 
30 } // namespace
31 
32 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.