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