Functions

Fn_flip

//! More...

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)

Detailed Description

//!


Function Documentation

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

Definition at line 25 of file fn_flip.hpp.

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

  {
  arma_extra_debug_sigprint();
  
  return Op<T1, op_flipud>(X.get_ref());
  }

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

Definition at line 37 of file fn_flip.hpp.

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

  {
  arma_extra_debug_sigprint();
  
  return Op<T1, op_fliplr>(X.get_ref());
  }