00001 // Copyright (C) 2011 NICTA (www.nicta.com.au) 00002 // Copyright (C) 2011 Conrad Sanderson 00003 // 00004 // This file is part of the Armadillo C++ library. 00005 // It is provided without any warranty of fitness 00006 // for any purpose. You can redistribute this file 00007 // and/or modify it under the terms of the GNU 00008 // Lesser General Public License (LGPL) as published 00009 // by the Free Software Foundation, either version 3 00010 // of the License or (at your option) any later version. 00011 // (see http://www.opensource.org/licenses for more info) 00012 00013 00016 00017 00019 template<typename eT, typename gen_type> 00020 class GenCube : public BaseCube<eT, GenCube<eT, gen_type> > 00021 { 00022 public: 00023 00024 typedef eT elem_type; 00025 typedef typename get_pod_type<elem_type>::result pod_type; 00026 00027 static const bool prefer_at_accessor = false; 00028 00029 arma_aligned const uword n_rows; 00030 arma_aligned const uword n_cols; 00031 arma_aligned const uword n_slices; 00032 00033 arma_inline GenCube(const uword in_n_rows, const uword in_n_cols, const uword in_n_slices); 00034 arma_inline ~GenCube(); 00035 00036 arma_inline static eT generate(); 00037 00038 arma_inline eT operator[] (const uword i) const; 00039 arma_inline eT at (const uword row, const uword col, const uword slice) const; 00040 00041 inline void apply (Cube<eT>& out) const; 00042 inline void apply_inplace_plus (Cube<eT>& out) const; 00043 inline void apply_inplace_minus(Cube<eT>& out) const; 00044 inline void apply_inplace_schur(Cube<eT>& out) const; 00045 inline void apply_inplace_div (Cube<eT>& out) const; 00046 }; 00047 00048 00049