Show
Ignore:
Timestamp:
05/11/10 16:25:24 (14 years ago)
Author:
smidl
Message:

bdmtoolbox updated for new loggers

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/tutorial/userguide/arx_basic_example.m

    r871 r933  
    1717%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    1818% plot results 
    19 ndat = size(M.DS_u,1); 
     19ndat = size(M.DS_dt_u,1); 
    2020 
    2121subplot(1,2,1); 
     
    2323plotestimates(true_theta, ... 
    2424    M.Est0_apost_mean_theta, ... 
    25     M.Est0_apost_lb_theta, ... 
    26     M.Est0_apost_ub_theta); 
     25    M.Est0_apost_lbound_theta, ... 
     26    M.Est0_apost_ubound_theta); 
    2727set(gca,'YLim',[-1.5,1]); 
    2828 
     
    3131plotestimates(true_R, ... 
    3232    M.Est0_apost_mean_r, ... 
    33     M.Est0_apost_lb_r, ... 
    34     M.Est0_apost_ub_r); 
     33    M.Est0_apost_lbound_r, ... 
     34    M.Est0_apost_ubound_r); 
    3535 
    3636title('Variance parameters r')