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

matlab例程

开发平台:

Matlab

  1. function help2_callback
  2. DI=dialog('unit','normalized','position',[.34 .2 .35 .6],'name','Help');
  3. AI=axes('parent',DI,'visible','off');
  4. t={ 'fontname{Times New Romman}fontsize{9}The  file  fZk.mat  where the  simulated ',... 
  5.     ''...
  6.     'mesurements (in the form of a cell array ',...
  7.     ''...
  8.     'Zk)  are stored  is created  according to  ',...
  9.     '',...
  10.     'the model specified at the time the filter  ',...
  11.     '',...
  12.     'is  initialized.  You  can  use  ''Generate',...
  13.     '',...
  14.     ' Mesurements'' to create the file fZk.mat ',...
  15.     '',...
  16.     'after the filter is initialized.'};
  17.     
  18. text(0,.6,t,'parent',AI);
  19. uiwait(DI);%suspend the other programmes.