graphic1.m

来自「对MATLAB的函数进行的一个补充添加,你只要在MATLAB里面添加下就能使用了」· M 代码 · 共 50 行

M
50
字号
function fig = graphic1()% This is the machine-generated representation of a Handle Graphics object% and its children.  Note that handle values may change when these objects% are re-created. This may cause problems with any callbacks written to% depend on the value of the handle at the time the object was saved.%% To reopen this object, just type the name of the M-file at the MATLAB% prompt. The M-file and its associated MAT-file must be on your path.% Grenoble, December 2000% This work has been partly funded by the European project BLIS (IST-1999-14190)load graphic1h0 = figure('Color',[0.8 0.8 0.8], ...	'Colormap',mat0, ...	'NumberTitle','off', ...	'Position',[304 371 532 152], ...	'Tag','Fig1');h1 = uicontrol('Parent',h0, ...	'Units','points', ...	'BackgroundColor',[1 1 1], ...	'FontSize',14, ...	'Position',[22.87058823529412 32.18823529411765 181.2705882352941 61.83529411764706], ...	'String',mat1, ...	'Style','listbox', ...	'Tag','Listbox1', ...	'Value',1);h1 = uicontrol('Parent',h0, ...	'Units','points', ...	'BackgroundColor',[1 1 1], ...	'Callback',mat2, ...	'FontSize',15, ...	'ListboxTop',0, ...	'Position',[235.4823529411765 47.43529411764706 35.5764705882353 33.03529411764706], ...	'String','OK', ...	'Tag','Pushbutton2', ...	'UserData',0);h1 = uicontrol('Parent',h0, ...	'Units','points', ...	'BackgroundColor',[1 1 1], ...	'Callback','close;', ...	'FontSize',15, ...	'ListboxTop',0, ...	'Position',[300.7058823529412 35.5764705882353 62.68235294117647 57.6], ...	'String','CLOSE', ...	'Tag','Pushbutton1');if nargout > 0, fig = h0; end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?