Show
Ignore:
Timestamp:
11/28/09 15:07:33 (14 years ago)
Author:
smidl
Message:

examples on windows

Files:
1 modified

Legend:

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

    r744 r745  
    2323C1.class = 'LQG_ARX'; 
    2424C1.ARX = A1; 
    25 C1.Qu = 0.1*eye(2); 
     25C1.Qu = 1*eye(2); 
    2626C1.Qy = eye(1); 
    2727C1.yreq = 1; 
    2828C1.horizon = 100; 
    2929 
    30 % participant 1 
    31 Cp1. 
     30M= controlloop(DS,{C1}); 
    3231 
    33 M= controlloop(DS,{C1}); 
     32 
     33%%%%%%%%%%%%%%%%%%%%% 
     34%  PLOT 
     35 
     36figure; 
     37subplot(2,1,1); 
     38plot(M.DS_y); 
     39subplot(2,1,2); 
     40hold off  
     41plot(M.DS_u1); 
     42hold on 
     43plot(M.DS_u2);