MyraMath
conjugate.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_EXPRESSION_CONJUGATE_H
7 #define MYRAMATH_EXPRESSION_CONJUGATE_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
16 
17 namespace myra {
18 
19 // Forward declarations.
20 template<int Arity, class Number> class Expression;
21 
23 MYRAMATH_EXPORT Expression<1,NumberS> conjugate (const Expression<1,NumberS>& A);
25 MYRAMATH_EXPORT Expression<1,NumberD> conjugate (const Expression<1,NumberD>& A);
26 MYRAMATH_EXPORT Expression<1,NumberC> conjugate (const Expression<1,NumberC>& A);
27 MYRAMATH_EXPORT Expression<1,NumberZ> conjugate (const Expression<1,NumberZ>& A);
28 MYRAMATH_EXPORT Expression<2,NumberS> conjugate (const Expression<2,NumberS>& A);
29 MYRAMATH_EXPORT Expression<2,NumberD> conjugate (const Expression<2,NumberD>& A);
30 MYRAMATH_EXPORT Expression<2,NumberC> conjugate (const Expression<2,NumberC>& A);
31 MYRAMATH_EXPORT Expression<2,NumberZ> conjugate (const Expression<2,NumberZ>& A);
32 // Note, these declarations are duplicated in functions.h, and they're defined in functions_complex.cpp (there's no conjugate.cpp)
34 
35 } // namespace myra
36 
37 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.