Changeset 170 for tests/arx_test.cpp

Show
Ignore:
Timestamp:
09/24/08 13:07:50 (16 years ago)
Author:
smidl
Message:

Mixtures of EF and related changes to libEF and BM

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tests/arx_test.cpp

    r162 r170  
    1111        vec th("0.8 -0.3 0.4 0.01"); 
    1212        int ord=th.length(); 
    13         double sqr=1; 
     13        double sqr=0.1; 
    1414         
    1515        //Test constructor 
    16         mat V0 = 0.001*eye(ord+1); V0(0.0)*= 10; // 
     16        mat V0 = 0.00001*eye(ord+1); V0(0.0)*= 10; // 
    1717        double nu0 = ord+1; 
    1818         
    19         RV thr("{theta_and_r }"); 
     19        RV thr("{theta_and_r }",vec_1(ord+1)); 
    2020        ARX Ar(thr, V0, nu0); 
    21         epdf& Ar_ep = Ar._epdf(); 
    22          
     21        const epdf& Ar_ep = Ar._epdf(); 
     22                                 
    2323        //Test estimation 
    24         int ndat = 1000; 
     24        int ndat = 10000; 
    2525        int t,j; 
    2626        vec Yt(ndat);