Changeset 1322 for library

Show
Ignore:
Timestamp:
04/04/11 14:15:32 (13 years ago)
Author:
smidl
Message:

correction of arx example

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/tutorial/arx_simple.cpp

    r1064 r1322  
    1212    Ar.validate(); 
    1313    // forgetting is default: 1.0 
    14     mat Data = concat_vertical ( randn ( 1, 100 ), ones ( 1, 100 ) ); 
    15     Ar.bayes_batch ( Data ); 
     14    Ar.bayes_batch ( randn ( 1, 3400 ) ); 
    1615 
    1716    cout << "Expected value of Theta is: " << Ar.posterior().mean() << endl; 
     17    cout << "NC of posterior: " << Ar.posterior().lognc() << endl; 
    1818}