forward_proto.hpp

Go to the documentation of this file.
00001 // Copyright (C) 2010 NICTA and the authors listed below
00002 // http://nicta.com.au
00003 // 
00004 // Authors:
00005 // - Conrad Sanderson (conradsand at ieee dot org)
00006 // 
00007 // This file is part of the Armadillo C++ library.
00008 // It is provided without any warranty of fitness
00009 // for any purpose. You can redistribute this file
00010 // and/or modify it under the terms of the GNU
00011 // Lesser General Public License (LGPL) as published
00012 // by the Free Software Foundation, either version 3
00013 // of the License or (at your option) any later version.
00014 // (see http://www.opensource.org/licenses for more info)
00015 
00016 
00017 using std::cout;
00018 using std::cerr;
00019 using std::endl;
00020 using std::ios;
00021 
00022 template<typename eT> class Mat;
00023 template<typename eT> class Col;
00024 template<typename eT> class Row;
00025 template<typename eT> class Cube;
00026 
00027 template<typename eT> class subview;
00028 template<typename eT> class subview_col;
00029 template<typename eT> class subview_row;
00030 template<typename oT> class subview_field;
00031 template<typename oT> class subview_cube;
00032 
00033 template<typename eT> class diagview;
00034 
00035 class diskio;
00036 
00037 class op_min;
00038 class op_max;
00039 
00040 class op_trans;
00041 class op_htrans;
00042 class op_inv;
00043 class op_sum;
00044 class op_diagmat;
00045 
00046 class eop_conj;
00047 
00048 class glue_times;
00049 class glue_times_diag;
00050 
00051 template<const bool, const bool, const bool, const bool> class gemm;
00052 template<const bool, const bool, const bool>             class gemv;
00053 
00054 template<typename T1, typename  op_type> class  Op; 
00055 template<typename T1, typename eop_type> class eOp;
00056 
00057 template<typename T1, typename  op_type> class  OpCube; 
00058 template<typename T1, typename eop_type> class eOpCube; 
00059 
00060 template<typename T1, typename T2, typename  glue_type> class  Glue;
00061 template<typename T1, typename T2, typename eglue_type> class eGlue;
00062 
00063 template<typename T1, typename T2, typename  glue_type> class  GlueCube;
00064 template<typename T1, typename T2, typename eglue_type> class eGlueCube;
00065 
00066 template<typename T1> class Proxy;
00067 template<typename T1> class ProxyCube;
00068 
00069 
00070 
00071 //! \addtogroup diskio
00072 //! @{
00073 
00074 
00075 //! file types supported by Armadillo
00076 enum file_type
00077   {
00078   auto_detect,  //!< Automatically detect the file type (file must be one of the following types)
00079   raw_ascii,    //!< ASCII format (text), without any other information.
00080   arma_ascii,   //!< Armadillo ASCII format (text), with information about matrix type and size
00081   arma_binary,  //!< Armadillo binary format
00082   pgm_binary,   //!< Portable Grey Map (greyscale image)
00083   ppm_binary    //!< Portable Pixel Map (colour image), used by the field and cube classes
00084   };
00085 
00086 
00087 //! @}
00088 
00089