Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 template<typename T1, typename T2, typename eglue_type>
00023 arma_inline
00024 eGlueCube<T1,T2,eglue_type>::~eGlueCube()
00025 {
00026 arma_extra_debug_sigprint();
00027 }
00028
00029
00030
00031 template<typename T1, typename T2, typename eglue_type>
00032 arma_inline
00033 eGlueCube<T1,T2,eglue_type>::eGlueCube(const T1& in_A, const T2& in_B)
00034 : P1(in_A)
00035 , P2(in_B)
00036 {
00037 arma_extra_debug_sigprint();
00038
00039 arma_assert_same_size(P1.n_rows, P1.n_cols, P1.n_slices, P2.n_rows, P2.n_cols, P2.n_slices, eglue_type::text());
00040 }
00041
00042
00043
00044