MyraMath
ReshapeAction.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_ITERATIVE_RESHAPEACTION_H
7 #define MYRAMATH_ITERATIVE_RESHAPEACTION_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
16 
17 namespace myra {
18 
19 // Forward declarations.
20 template<class Number> class Action;
21 
23 MYRAMATH_EXPORT Action<NumberS> reshape(const Action<NumberS>& A, int N);
25 MYRAMATH_EXPORT Action<NumberD> reshape(const Action<NumberD>& A, int N);
26 MYRAMATH_EXPORT Action<NumberC> reshape(const Action<NumberC>& A, int N);
27 MYRAMATH_EXPORT Action<NumberZ> reshape(const Action<NumberZ>& A, int N);
29 
30 } // namespace myra
31 
32 #endif
Definition: syntax.dox:1
Various utility functions/classes related to scalar Number types.