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 Gen : public Base<eT, Gen<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 = (is_same_type<gen_type, gen_ones_diag>::value) ? true : false; 00028 00029 arma_aligned const uword n_rows; 00030 arma_aligned const uword n_cols; 00031 00032 arma_inline Gen(const uword in_n_rows, const uword in_n_cols); 00033 arma_inline ~Gen(); 00034 00035 arma_inline static eT generate(); 00036 00037 arma_inline eT operator[] (const uword i) const; 00038 arma_inline eT at (const uword row, const uword col) const; 00039 00040 inline void apply (Mat<eT>& out) const; 00041 inline void apply_inplace_plus (Mat<eT>& out) const; 00042 inline void apply_inplace_minus(Mat<eT>& out) const; 00043 inline void apply_inplace_schur(Mat<eT>& out) const; 00044 inline void apply_inplace_div (Mat<eT>& out) const; 00045 }; 00046 00047 00048