www.emgu.com/wiki
Concate the current matrix with another matrix horizontally. If this matrix is n x m1 and otherMatrix is n x m2, the resulting matrix is n x (m1 + m2).

Declaration Syntax
public Matrix<TDepth> ConcateHorizontal(
Matrix<TDepth> otherMatrix
)
Public Function ConcateHorizontal ( _
otherMatrix As Matrix(Of TDepth) _
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ ConcateHorizontal(
Matrix<TDepth>^ otherMatrix
)

Parameters
- otherMatrix (Matrix<(Of <(TDepth>)>))
- The other matrix to concate

Return Value
A matrix that is the horizontal concatening of this matrix and otheMatrix
Assembly:
Emgu.CV (Module: Emgu.CV) Version: 1.3.0.0 (1.3.0.0)