#include <ProxyCube.hpp>
Public Types | |
typedef eT | elem_type |
typedef get_pod_type < elem_type >::result | pod_type |
typedef Cube< eT > | stored_type |
Public Member Functions | |
ProxyCube (const Cube< eT > &A) | |
ProxyCube (const u32 in_n_rows, const u32 in_n_cols, const u32 in_n_slices) | |
arma_inline elem_type | operator[] (const u32 i) const |
arma_inline elem_type | at (const u32 row, const u32 col, const u32 slice) const |
Public Attributes | |
const Cube< eT > & | Q |
const u32 | n_rows |
const u32 | n_cols |
const u32 | n_elem_slice |
const u32 | n_slices |
const u32 | n_elem |
Definition at line 35 of file ProxyCube.hpp.
Definition at line 39 of file ProxyCube.hpp.
typedef get_pod_type<elem_type>::result ProxyCube< Cube< eT > >::pod_type |
Definition at line 40 of file ProxyCube.hpp.
typedef Cube<eT> ProxyCube< Cube< eT > >::stored_type |
Definition at line 41 of file ProxyCube.hpp.
ProxyCube< Cube< eT > >::ProxyCube | ( | const Cube< eT > & | A | ) | [inline, explicit] |
Definition at line 52 of file ProxyCube.hpp.
ProxyCube< Cube< eT > >::ProxyCube | ( | const u32 | in_n_rows, | |
const u32 | in_n_cols, | |||
const u32 | in_n_slices | |||
) | [inline, explicit] |
Definition at line 63 of file ProxyCube.hpp.
arma_inline elem_type ProxyCube< Cube< eT > >::operator[] | ( | const u32 | i | ) | const [inline] |
Definition at line 74 of file ProxyCube.hpp.
{ return Q[i]; }
arma_inline elem_type ProxyCube< Cube< eT > >::at | ( | const u32 | row, | |
const u32 | col, | |||
const u32 | slice | |||
) | const [inline] |
Definition at line 75 of file ProxyCube.hpp.
{ return Q.at(row, col, slice); }
Definition at line 44 of file ProxyCube.hpp.
Definition at line 46 of file ProxyCube.hpp.
Definition at line 47 of file ProxyCube.hpp.
const u32 ProxyCube< Cube< eT > >::n_elem_slice |
Definition at line 48 of file ProxyCube.hpp.
Definition at line 49 of file ProxyCube.hpp.