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