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

matlab例程

开发平台:

Matlab

  1. function stop_callback()
  2. BIII=findobj(gcf,'tag','stop');
  3. switch get(BIII,'userdata')
  4. case 1,       
  5.     set(BIII,'String','Continue?','userdata',0);
  6.     uiwait(gcf)
  7.     
  8. case 0,
  9.     set(BIII,'String','Stop?','userdata',1);
  10.     uiresume(gcf)
  11.     
  12. end