Changeset 230 for bdm/math

Show
Ignore:
Timestamp:
01/15/09 10:53:55 (15 years ago)
Author:
smidl
Message:

mpf_delta - estimation of covariance weight

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/math/chmat.h

    r183 r230  
    7575        chmat& operator += ( const chmat &A2 ); 
    7676        chmat& operator -= ( const chmat &A2 ) ; 
     77        chmat& operator * ( const chmat &A2 ); 
     78        chmat& operator * ( const double &d ){Ch*d; return *this;}; 
     79        chmat& operator = ( const chmat &A2 ){Ch=A2.Ch;dim=A2.dim;return *this;} 
    7780}; 
    7881