cotila  1.2.1
A compile time linear algebra system

◆ repmat()

template<std::size_t Row, std::size_t Col, std::size_t M, std::size_t N, typename T >
constexpr matrix<T, M * Row, N * Col> cotila::repmat ( const matrix< T, M, N > &  m)
Template Parameters
Rowthe number of times to repeat in the row direction
Colthe number of times to repeat in the column direction
Parameters
man $ M \times N $ matrix of type T
Returns
an $ \left(M\times\textrm{Row}\right) \times \left(N\times\textrm{Col}\right) $ matrix $ \textbf{m}' $ of type T such that $ \textbf{m}'_{ij} = \textbf{m}_{\left(i\ \textrm{mod}\ M\right),\ \left(j\ \textrm{mod}\ N \right)} $

Repeats copies of a matrix.