Show
Ignore:
Timestamp:
08/16/09 18:13:31 (15 years ago)
Author:
smidl
Message:

removal of unused functions _e() and samplecond(,) and added documentation lines

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/arx_elem_test.cpp

    r477 r536  
    1212        mat mu ( 1, 1 ); 
    1313        mat R ( 1, 1 ); 
    14         Ar._e()->mean_mat ( mu, R ); 
     14        Ar.posterior().mean_mat ( mu, R ); 
    1515        cout << "Prior moments: mu=" << mu << ", R=" << R << endl; 
    1616 
     
    2424        // Ar is now filled with estimates of N(0,1); 
    2525        cout << "Empirical moments: mu=" << sum ( smp ) / ndat << ", R=" << sum_sqr ( smp ) / ndat - pow ( sum ( smp ) / ndat, 2 ) << endl; 
    26         Ar._e()->mean_mat ( mu, R ); 
     26        Ar.posterior().mean_mat ( mu, R ); 
    2727        cout << "Posterior moments: mu=" << mu << ", R=" << R << endl; 
    2828