//! More...
Functions | |
| template<typename T1 > | |
| arma_inline const Op< T1, op_repmat > | repmat (const Base< typename T1::elem_type, T1 > &A, const u32 r, const u32 c) |
| //! delayed 'repeat matrix' construction of a matrix | |
//!
| arma_inline const Op<T1, op_repmat> repmat | ( | const Base< typename T1::elem_type, T1 > & | A, | |
| const u32 | r, | |||
| const u32 | c | |||
| ) |
//! delayed 'repeat matrix' construction of a matrix
Definition at line 28 of file fn_repmat.hpp.
References Base< elem_type, derived >::get_ref().
Referenced by op_princomp::direct_princomp().
{
arma_extra_debug_sigprint();
return Op<T1, op_repmat>(A.get_ref(), r, c);
}