Changeset 811 for library/bdm/math

Show
Ignore:
Timestamp:
02/21/10 20:58:51 (14 years ago)
Author:
smidl
Message:

extensions and stuff for MPF

Files:
1 modified

Legend:

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

    r738 r811  
    7373vec chmat::sqrt_mult ( const vec &v ) const { 
    7474        vec pom; 
    75         pom = Ch * v; 
     75        pom = Ch.T() * v; 
    7676        return pom; 
    7777}