📄 gcshf.m
字号:
% Script : shift to the left or right on the gain envelope of the GCI
% display using the mouse.
%
% gcsht.m is a call_function executed by "env_shl" or "env_shr" on
% figure(Gcset_f).
figure(Gcdis_f);
range=fix( (Rite-Left+1)/2 );
if LEFT==1 % shift to left
Left=max(1,Left-range );
Rite=min(Left+2*range,nframe);
v=axis;
axis([Left-1 Rite v(3) v(4)]);
else % shift to right
Rite=min(nframe,Rite+range );
Left=max(1,Rite-2*range);
v=axis;
axis([Left-1 Rite v(3) v(4)]);
end
clear LEFT range;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -