help1_callback.m
上传用户:jspk663
上传日期:2013-08-19
资源大小:232k
文件大小:1k
- function help_callback
-
- DI=dialog('unit','normalized','position',[.34 .2 .35 .6],'name','Help');
- AI=axes('parent',DI,'visible','off');
- t={ 'fontname{Times New Romman}fontsize{9}Supposing the state and observation',...
- ''...
- 'eq. of a discrete system to be:',...
- ''...
- ' X_k_+_1=Phi_k_+_1_,_k+Gamma_k_+_1_,_kw_k',...
- ' Z_k=H_kX_k+v_k',...
- '',...
- 'and the order of X_k to be n, w_k to be p,',...
- '',...
- 'v_k to be m, then Phi_k_+_1_,_k is ntimesn, Gamma_k_+_1_,_k is ',...
- '',...
- 'ntimesp, H_k is mtimesn, Q_k is ptimesp, R_k is mtimesm,',...
- '',...
- 'P_0_,_0 is ntimesn, and X_0_,_0 is ntimes1.'};
-
- text(0,.6,t,'parent',AI);
- uicontrol(gcf,'unit','normalized','string','Next=>','position',[.75 .07 .22 .07],'callback','next1_callback','userdata',1);
- uiwait(DI);%suspend the other programmes.