Show
Ignore:
Timestamp:
11/10/09 11:03:09 (15 years ago)
Author:
mido
Message:

_m changed to _mat

emix.cfg prepared, but it is not yet debugged!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/exp_family.h

    r693 r713  
    5858                } 
    5959                //!Evaluate normalized log-probability for many samples 
    60                 virtual vec evallog_m (const mat &Val) const { 
     60                virtual vec evallog_mat (const mat &Val) const { 
    6161                        vec x (Val.cols()); 
    6262                        for (int i = 0;i < Val.cols();i++) {x (i) = evallog_nn (Val.get_col (i)) ;} 
     
    6464                } 
    6565                //!Evaluate normalized log-probability for many samples 
    66                 virtual vec evallog_m (const Array<vec> &Val) const { 
     66                virtual vec evallog_mat (const Array<vec> &Val) const { 
    6767                        vec x (Val.length()); 
    6868                        for (int i = 0;i < Val.length();i++) {x (i) = evallog_nn (Val (i)) ;}