help1_callback.m
上传用户:jspk663
上传日期:2013-08-19
资源大小:232k
文件大小:1k
源码类别:

matlab例程

开发平台:

Matlab

  1. function help_callback
  2.   
  3. DI=dialog('unit','normalized','position',[.34 .2 .35 .6],'name','Help');
  4. AI=axes('parent',DI,'visible','off');
  5. t={ 'fontname{Times New Romman}fontsize{9}Supposing the state and observation',... 
  6.     ''...
  7.     'eq. of a discrete system to be:',...
  8.     ''...
  9.     '             X_k_+_1=Phi_k_+_1_,_k+Gamma_k_+_1_,_kw_k',...
  10.     '             Z_k=H_kX_k+v_k',...    
  11.     '',...
  12.     'and the order of X_k to be n, w_k to be p,',...
  13.     '',...
  14.     'v_k to be m, then Phi_k_+_1_,_k is ntimesn, Gamma_k_+_1_,_k is ',...
  15.     '',...
  16.     'ntimesp, H_k is mtimesn, Q_k is ptimesp, R_k is mtimesm,',...
  17.     '',...
  18.     'P_0_,_0 is ntimesn, and X_0_,_0 is ntimes1.'};
  19.     
  20. text(0,.6,t,'parent',AI);
  21. uicontrol(gcf,'unit','normalized','string','Next=>','position',[.75 .07 .22 .07],'callback','next1_callback','userdata',1);
  22. uiwait(DI);%suspend the other programmes.