Show
Ignore:
Timestamp:
05/21/10 13:31:06 (14 years ago)
Author:
smidl
Message:

New mexes + corrected tutorial

Files:
1 modified

Legend:

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

    r934 r968  
    1818% create ARX estimator 
    1919A1.class = 'ARX'; 
    20 A1.rv = y; 
     20A1.rv = RV({'theta','r'},[3,1]); 
     21A1.yrv = y; 
    2122A1.rgr = RVtimes([y,u1],[-3,0]) ; % correct structure is {y,y} 
    22 A1.log_level ='logbounds,logevidence'; 
     23A1.log_level ='logbounds,logevidence,logmean'; 
    2324A1.frg = 0.95; 
    2425 
     
    5354hold off 
    5455subplot(1,2,1); 
    55 plot(M.DS_y); 
     56plot(M.DS_dt_y); 
    5657subplot(1,2,2); 
    57 plot(M.DS_u1); hold on; 
    58 plot(M.DS_u2);  
     58plot(M.DS_dt_u1); hold on; 
     59plot(M.DS_dt_u2);  
    5960 
    6061figure(2);