Scythe-1.0.3
template<matrix_order RO, matrix_style RS, typename T , matrix_order PO1, matrix_style PS1, matrix_order PO2, matrix_style PS2>
Matrix<T,RO,RS> scythe::rbind ( const Matrix< T, PO1, PS1 > &  A,
const Matrix< T, PO2, PS2 > &  B 
)

Row bind two matrices.

This function row binds two matrices, A and B.

Parameters:
AThe upper Matrix.
BThe lower Matrix.
See also:
cbind(const Matrix<T,PO1,PS1>& A, const Matrix<T,PO2,PS2>& B)
Exceptions:
scythe_alloc_error(Level 1)
scythe_conformation_error(Level 1)

References scythe::Matrix_base< ORDER, STYLE >::cols(), copy(), scythe::Matrix_base< ORDER, STYLE >::rows(), and SCYTHE_CHECK_10.