Changeset 682 for library/bdm/base

Show
Ignore:
Timestamp:
10/27/09 16:52:32 (15 years ago)
Author:
mido
Message:

bayesB renamed to bayes_batch

Location:
library/bdm/base
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.cpp

    r675 r682  
    386386} 
    387387 
    388 void BM::bayesB ( const mat &Data ) { 
     388void BM::bayes_batch ( const mat &Data ) { 
    389389        for ( int t = 0; t < Data.cols(); t++ ) { 
    390390                bayes ( Data.get_col ( t ) ); 
  • library/bdm/base/bdmbase.h

    r679 r682  
    10801080        virtual void bayes ( const vec &yt, const vec &cond=empty_vec ) = 0; 
    10811081        //! Batch Bayes rule (columns of Dt are observations) 
    1082         virtual void bayesB ( const mat &Dt ); 
     1082        virtual void bayes_batch ( const mat &Dt ); 
    10831083        //! Evaluates predictive log-likelihood of the given data record 
    10841084        //! I.e. marginal likelihood of the data with the posterior integrated out.