onslidebar.m
来自「本程序是用java编写的一些关于arq协议实现的小程序」· M 代码 · 共 11 行
M
11 行
startpoint=get(hslidebar,'Value');
set(slidingaxes,'Xlim',[startpoint,startpoint+plotwidth],'Ylim',[0,plotheight]);
for i=2:length(textxx_arr)
if ((textxx_arr(i)>=startpoint+plotwidth) | (textxx_arr(i)<=startpoint))
set(texth1(i),'Visible','off');
set(texth2(i),'Visible','off');
else
set(texth1(i),'Visible','on');
set(texth2(i),'Visible','on');
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?