Changeset 725 for library/bdm/math

Show
Ignore:
Timestamp:
11/17/09 00:53:54 (15 years ago)
Author:
smidl
Message:

Sampling from egiw

Location:
library/bdm/math
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/math/chmat.h

    r723 r725  
    5757        void inv ( chmat &Inv ) const   { 
    5858                ( Inv.Ch ) = itpp::inv ( Ch ).T(); 
     59                Inv.dim = dim; 
    5960        }; //Fixme: can be more efficient 
    6061        ; 
  • library/bdm/math/square_mat.cpp

    r565 r725  
    115115                } 
    116116        } 
    117         mat V2 = L.transpose() * diag ( D ) * L; 
    118         return V2; 
     117        //mat V2 = L.transpose() * diag ( D ) * L; 
     118        return V; 
    119119} 
    120120