Fn_repmat

Functions

template<typename T1 >
const Op< T1, op_repmatrepmat (const Base< typename T1::elem_type, T1 > &A, const u32 r, const u32 c)
 delayed 'repeat matrix' construction of a matrix

Function Documentation

template<typename T1 >
const Op<T1, op_repmat> repmat ( const Base< typename T1::elem_type, T1 > &  A,
const u32  r,
const u32  c 
) [inline]

delayed 'repeat matrix' construction of a matrix

Definition at line 28 of file fn_repmat.hpp.

References Base< elem_type, derived >::get_ref().

00029   {
00030   arma_extra_debug_sigprint();
00031 
00032   return Op<T1, op_repmat>(A.get_ref(), r, c);
00033   }