?? created.m
字號:
function created=created(varargin)
%global hfigure data
% get handler and make this figure active
gcf=varargin{1};
figure(gcf);
data = get(gcf,'UserData');
% get file name
path=varargin{2};
name=varargin{3};
pathname=strcat(path,name);
if check2ddata(pathname),
file.pathname=pathname;
file.path=path;
file.name=name;
set(data.pushbutton1,'UserData',file);
%SVM('loadsets',hfigure);
loadsets2(gcf);
%SVM('reset',hfigure);
% resetB(gcf);
else
errordlg('This file does not contain required data.','Bad file','modal');
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -