Routines to concatenate Action's in top/bottom fashion.  
More...
#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Go to the source code of this file.
|  | 
|  | 
| Action< NumberS > | myra::vertcat (const Action< NumberS > &A, const Action< NumberS > &B) | 
|  | Returns [A;B]. 
 | 
|  | 
| Action< NumberD > | myra::vertcat (const Action< NumberD > &A, const Action< NumberD > &B) | 
|  | Returns [A;B]. 
 | 
|  | 
| Action< NumberC > | myra::vertcat (const Action< NumberC > &A, const Action< NumberC > &B) | 
|  | Returns [A;B]. 
 | 
|  | 
| Action< NumberZ > | myra::vertcat (const Action< NumberZ > &A, const Action< NumberZ > &B) | 
|  | Returns [A;B]. 
 | 
|  | 
|  | 
| Action< NumberS > | myra::vertcat (const Array1< Action< NumberS > > &actions) | 
|  | Returns [A;B;C ...], note this requires initializer_list braces, as in: horzcat({A,B,C...}) 
 | 
|  | 
| Action< NumberD > | myra::vertcat (const Array1< Action< NumberD > > &actions) | 
|  | Returns [A;B;C ...], note this requires initializer_list braces, as in: horzcat({A,B,C...}) 
 | 
|  | 
| Action< NumberC > | myra::vertcat (const Array1< Action< NumberC > > &actions) | 
|  | Returns [A;B;C ...], note this requires initializer_list braces, as in: horzcat({A,B,C...}) 
 | 
|  | 
| Action< NumberZ > | myra::vertcat (const Array1< Action< NumberZ > > &actions) | 
|  | Returns [A;B;C ...], note this requires initializer_list braces, as in: horzcat({A,B,C...}) 
 | 
|  | 
Routines to concatenate Action's in top/bottom fashion.