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/math/chmat.h

    r565 r660  
    3434        mat to_mat() const; 
    3535        void mult_sym ( const mat &C ); 
     36        //! mult_sym with return value in parameter \c U 
    3637        void mult_sym ( const mat &C , chmat &U ) const; 
    3738        void mult_sym_t ( const mat &C ); 
     39        //! mult_sym with return value in parameter \c U 
    3840        void mult_sym_t ( const mat &C, chmat &U ) const; 
    3941        double logdet() const; 
     
    112114        } 
    113115 
    114         //! Operators 
     116        //! Operator  
    115117        chmat& operator += ( const chmat &A2 ); 
     118        //! Operator  
    116119        chmat& operator -= ( const chmat &A2 ); 
     120        //! Operator  
    117121        chmat& operator * ( const double &d ) { 
    118122                Ch*sqrt ( d ); 
    119123                return *this; 
    120124        }; 
     125        //! Operator  
    121126        chmat& operator = ( const chmat &A2 ) { 
    122127                Ch = A2.Ch; 
     
    124129                return *this; 
    125130        } 
     131        //! Operator  
    126132        chmat& operator *= ( double x ) { 
    127133                Ch *= sqrt ( x );