MyraMath
Classes
horzcat.h File Reference

Routines to concatenate Matrix's in left/right fashion. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for horzcat.h:

Go to the source code of this file.

Classes

class  myra::Array1< T >
 Container of values, allows random (i) access. More...
 
class  myra::Matrix< Number >
 Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More...
 
class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 

Functions

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...})
 

Detailed Description

Routines to concatenate Matrix's in left/right fashion.