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

matlab例程

开发平台:

Matlab

  1. function frommatfile_callback
  2. [fname,pname]=uigetfile('*.mat','Initialize From Mat File');
  3. if ~fname
  4.     return
  5. end
  6. for i=1:length(fname)%get the file name without the extension
  7.     if fname(i)=='.'
  8.         break;
  9.     end
  10.     name(i)=fname(i);
  11. end
  12. load([pname,name]);
  13. save inidata A B H Q R P0 X0;%you should specify the variables in the stand-alone exe file 
  14. CI=findobj(gcf,'tag','compo1');
  15. set(CI,'userdata',[]);
  16. generatezk;