OpCube

Classes

class  OpCube< T1, op_type >
 Analog of the Op class, intended for cubes. More...

Functions

 OpCube::OpCube (const BaseCube< typename T1::elem_type, T1 > &in_m)
 OpCube::OpCube (const BaseCube< typename T1::elem_type, T1 > &in_m, const elem_type in_aux)
 OpCube::OpCube (const BaseCube< typename T1::elem_type, T1 > &in_m, const u32 in_aux_u32_a, const u32 in_aux_u32_b)
 OpCube::OpCube (const BaseCube< typename T1::elem_type, T1 > &in_m, const u32 in_aux_u32_a, const u32 in_aux_u32_b, const u32 in_aux_u32_c)
 OpCube::OpCube (const BaseCube< typename T1::elem_type, T1 > &in_m, const elem_type in_aux, const u32 in_aux_u32_a, const u32 in_aux_u32_b, const u32 in_aux_u32_c)
 OpCube::OpCube (const u32 in_aux_u32_a, const u32 in_aux_u32_b, const u32 in_aux_u32_c)
 OpCube::~OpCube ()

Function Documentation

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const BaseCube< typename T1::elem_type, T1 > &  in_m  )  [inline, explicit, inherited]

Definition at line 23 of file OpCube_meat.hpp.

00024   : m(in_m.get_ref())
00025   , aux(aux)              // don't tell mum
00026   , aux_u32_a(aux_u32_a)
00027   , aux_u32_b(aux_u32_b)
00028   , aux_u32_c(aux_u32_c)
00029   {
00030   arma_extra_debug_sigprint();
00031   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const BaseCube< typename T1::elem_type, T1 > &  in_m,
const elem_type  in_aux 
) [inline, inherited]

Definition at line 36 of file OpCube_meat.hpp.

00037   : m(in_m.get_ref())
00038   , aux(in_aux)
00039   , aux_u32_a(aux_u32_a)
00040   , aux_u32_b(aux_u32_b)
00041   , aux_u32_c(aux_u32_c)
00042   {
00043   arma_extra_debug_sigprint();
00044   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const BaseCube< typename T1::elem_type, T1 > &  in_m,
const u32  in_aux_u32_a,
const u32  in_aux_u32_b 
) [inline, inherited]

Definition at line 49 of file OpCube_meat.hpp.

00050   : m(in_m.get_ref())
00051   , aux(aux)
00052   , aux_u32_a(in_aux_u32_a)
00053   , aux_u32_b(in_aux_u32_b)
00054   , aux_u32_c(aux_u32_c)
00055   {
00056   arma_extra_debug_sigprint();
00057   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const BaseCube< typename T1::elem_type, T1 > &  in_m,
const u32  in_aux_u32_a,
const u32  in_aux_u32_b,
const u32  in_aux_u32_c 
) [inline, inherited]

Definition at line 62 of file OpCube_meat.hpp.

00063   : m(in_m.get_ref())
00064   , aux(aux)
00065   , aux_u32_a(in_aux_u32_a)
00066   , aux_u32_b(in_aux_u32_b)
00067   , aux_u32_c(in_aux_u32_c)
00068   {
00069   arma_extra_debug_sigprint();
00070   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const BaseCube< typename T1::elem_type, T1 > &  in_m,
const elem_type  in_aux,
const u32  in_aux_u32_a,
const u32  in_aux_u32_b,
const u32  in_aux_u32_c 
) [inline, inherited]

Definition at line 75 of file OpCube_meat.hpp.

00076   : m(in_m.get_ref())
00077   , aux(in_aux)
00078   , aux_u32_a(in_aux_u32_a)
00079   , aux_u32_b(in_aux_u32_b)
00080   , aux_u32_c(in_aux_u32_c)
00081   {
00082   arma_extra_debug_sigprint();
00083   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::OpCube ( const u32  in_aux_u32_a,
const u32  in_aux_u32_b,
const u32  in_aux_u32_c 
) [inline, inherited]

Definition at line 88 of file OpCube_meat.hpp.

00089   : m(m)
00090   , aux(aux)
00091   , aux_u32_a(in_aux_u32_a)
00092   , aux_u32_b(in_aux_u32_b)
00093   , aux_u32_c(in_aux_u32_c)
00094   {
00095   arma_extra_debug_sigprint();
00096   }

template<typename T1 , typename op_type >
OpCube< T1, op_type >::~OpCube (  )  [inline, inherited]

Definition at line 101 of file OpCube_meat.hpp.

00102   {
00103   arma_extra_debug_sigprint();
00104   }