Changeset 181 for bdm/stat/libBM.h

Show
Ignore:
Timestamp:
10/15/08 19:11:17 (16 years ago)
Author:
smidl
Message:

Regenerated doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.h

    r178 r181  
    1919using namespace itpp; 
    2020 
    21 //! Structure of RV (used internally) 
     21//! Structure of RV (used internally), i.e. expanded RVs 
    2222class str{ 
    2323public: 
     24        //! vector id ids (non-unique!) 
    2425        ivec ids; 
     26        //! vector of times 
    2527        ivec times; 
     28        //!Default constructor 
    2629        str(ivec ids0, ivec times0):ids(ids0),times(times0){ 
    2730                it_assert_debug(times0.length()==ids0.length(),"Incompatible input"); 
     
    262265        public: 
    263266                compositepdf(Array<mpdf*> A0): n(A0.length()), mpdfs(A0), rvsinrv(n), rvcsinrv(n),rvinrvcs(n){}; 
     267                //! find common rv, flag \param checkoverlap modifies whether overlaps are acceptable 
    264268                RV getrv(bool checkoverlap=false); 
     269                //! common rvc of all mpdfs is written to rvc 
    265270                void setrvc(const RV &rv, RV &rvc); 
     271                //! fill all rv*inrv* according to  
    266272                void setindices(const RV &rv); 
    267                 void setrvcinrv(const RV &rvc, Array<ivec> &rvcind); 
    268273}; 
    269274