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/stat/discrete.h

    r643 r660  
    125125UIREGISTER ( discrete_support ); 
    126126 
     127//! Function defined by values on a fixed grid and interpolated inbetween them 
    127128class grid_fnc: public fnc { 
    128129protected: 
     130        //! grid - function support 
    129131        rectangular_support sup; 
     132        //! function values on the grid 
    130133        vec values; 
    131134public: 
     
    154157class egrid: public epdf { 
    155158protected: 
     159        //! support of the pdf - grid 
    156160        rectangular_support sup; 
     161        //! values at the grid 
    157162        vec values; 
    158163public: