Fn_flip

Functions

template<typename T1 >
arma_inline const Op< T1,
op_flipud
flipud (const Base< typename T1::elem_type, T1 > &X)
template<typename T1 >
arma_inline const Op< T1,
op_fliplr
fliplr (const Base< typename T1::elem_type, T1 > &X)

Function Documentation

template<typename T1 >
arma_inline const Op<T1, op_flipud> flipud ( const Base< typename T1::elem_type, T1 > &  X  )  [inline]

Definition at line 25 of file fn_flip.hpp.

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

00026   {
00027   arma_extra_debug_sigprint();
00028   
00029   return Op<T1, op_flipud>(X.get_ref());
00030   }

template<typename T1 >
arma_inline const Op<T1, op_fliplr> fliplr ( const Base< typename T1::elem_type, T1 > &  X  )  [inline]

Definition at line 37 of file fn_flip.hpp.

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

00038   {
00039   arma_extra_debug_sigprint();
00040   
00041   return Op<T1, op_fliplr>(X.get_ref());
00042   }