matlab 代码画图设计panel

% Prepare the resizable panels
oldWarn = warning('off','MATLAB:hg:PossibleDeprecatedJavaSetHGProperty');
hMainPanel = uipanel('Units','norm', 'Position',[0,0,1,.78], 'BorderType','none', 'Background','w');
[hLeftPanel, hRightPanel, hDivider] = uisplitpane(hMainPanel, 'DividerColor',.95*[1,1,1]); %#ok
[hLeftBottomPanel,  hLeftTopPanel,  hLeftDivider]  = uisplitpane(hLeftPanel,  'Orientation','Vertical'); %#ok
[hRightBottomPanel, hRightTopPanel, hRightDivider] = uisplitpane(hRightPanel, 'Orientation','Vertical'); %#ok
warning(oldWarn);

你可能感兴趣的:(matlab 代码画图设计panel)