📄 iadsil.m
字号:
function iadsil
% Copyright (c) 1995 by Philipos C. Loizou
%
global adsFig adsOp
pos = get(0, 'screensize'); % get the screensize
sWi = pos(3);
sHe = pos(4);
xpos=(sWi-200)/2;
ypos=(sHe-80)/2;
if isempty(adsFig)
adsFig=figure('Units','Pixels','Position',[xpos ypos 200 80],'MenuBar','None','Name',...
'Adding silence','NumberTitle','Off');
adsOp=uicontrol('Style','edit','String','100','Position',[70 20 60 20],...
'Callback','editool(''addsil'')');
txt='Enter value in msec:';
uicontrol('Style','Text','String',txt,'Position',[10 50 160 20],...
'BackgroundColor',[0 0 0],'ForeGroundColor','y');
else
figure(adsFig);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -