Show
Ignore:
Timestamp:
10/15/09 00:04:30 (15 years ago)
Author:
smidl
Message:

doc - doxygen warnings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/mex/mex_BM.h

    r599 r660  
    1515using namespace bdm; 
    1616 
     17//! epdf with functions implemented in matlab 
    1718class mexEpdf: public epdf{ 
    1819        protected: 
     20                //! prefix of matlab functions 
    1921                string name; 
     22                //! pointer to storage structure 
    2023                mxArray *data; 
    2124        public: 
     
    4043UIREGISTER(mexEpdf); 
    4144 
     45//! BM with functions implemented in matlab 
    4246class mexBM: public BM{ 
    4347        protected : 
     48                //! prefix of matlab functions 
    4449                string name; 
     50                //! internal estimator 
    4551                mexEpdf est; 
     52                //! mxArray with attributes of this object 
    4653                mxArray *data; 
    4754        public: 
    4855                mexBM() {} 
    4956 
     57                //! duplicate internal data pointer? 
    5058                mxArray *get_data() { 
    5159                        //mexCallMATLAB(0, NULL, 1, &data, "dump"); 
     
    8189                        //mexCallMATLAB(0, NULL, 1, &data, "dump"); 
    8290                }  
     91                //! return correctly typed posterior (covariant return) 
    8392                const mexEpdf& posterior() const  { 
    8493                        return est; 
    85                 } //tohle by melo zustat!! 
    86                 const mexEpdf* _e() const  { 
    87                         return &est; 
    8894                } //tohle by melo zustat!! 
    8995};