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 22 of file OpCube_meat.hpp.

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

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 35 of file OpCube_meat.hpp.

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

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 48 of file OpCube_meat.hpp.

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

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 61 of file OpCube_meat.hpp.

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

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 74 of file OpCube_meat.hpp.

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

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 87 of file OpCube_meat.hpp.

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

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

Definition at line 100 of file OpCube_meat.hpp.

00101   {
00102   arma_extra_debug_sigprint();
00103   }