tdscdmamapwin.m
来自「matlab仿真的TD-WCDMA源码」· M 代码 · 共 32 行
M
32 行
screen = get(0, 'ScreenSize');
width = 0.75*screen(3);
height = 0.75*screen(4);
pos = [0.5*(screen(3)-width) 0.5*(screen(4)-height) width height];
a = figure('Color', [0.8 0.8 0.8], ...
'Name', ['TD-SCDMA simulation platform'], ...
'NumberTitle', 'off', ...
'PaperType', 'a4letter', ...
'Units', 'pixels', ...
'Position', pos, ...
'Renderer', 'zbuffer', ...
'RendererMode', 'manual', ...
'Tag', 'FigMainMap');
hStatusFrame = uicontrol(...
'parent', a, ...
'style', 'frame', ...
'units', 'normalized', ...
'position', [.025 .025 .19 .95], ...
'Tag', 'tagStatusFrame');
hStatusText = uicontrol(...
'parent', a, ...
'Style', 'Text', ...
'Units', 'normalized', ...
'Position', [.05 .05 .14 .9], ...
'String', '', ...
'HorizontalAlignment', 'Left', ...
'Tag', 'tagStatusText1');
axes('Position', [0.3 .05 .65 .9], 'Box', 'on')
drawnow
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?