📄 pr_fl_ed.m
字号:
%
% Callback function for "Frame length" slider of Property window
% Author : Minkyu Lee
% Date : 5-Oct-1994
%
if exist('lp_pr_win_h')
% Get the value from the slider
val=get(lp_pr_txt4_fl_h,'String');
% Put the string
set(lp_pr_fl_h,'Value',log(eval(val))/log(2));
end
if exist('ma_pr_win_h')
% Get the value from the slider
val=get(ma_pr_txt4_fl_h,'String');
% Put the string
set(ma_pr_fl_h,'Value',log(eval(val))/log(2));
end
if exist('arma_pr_win_h')
% Get the value from the slider
val=get(arma_pr_txt4_fl_h,'String');
% Put the string
set(arma_pr_fl_h,'Value',log(eval(val))/log(2));
end
if exist('sgram_pr_win_h')
% Get the value from the slider
val=get(sgram_pr_txt4_fl_h,'String');
% Put the string
set(sgram_pr_fl_h,'Value',log(eval(val))/log(2));
end
if exist('spec_pr_win_h')
% Get the value from the slider
val=get(spec_pr_txt4_fl_h,'String');
% Put the string
set(spec_pr_fl_h,'Value',log(eval(val))/log(2));
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -