pr_np_ed.m

来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 42 行

M
42
字号
%
% Callback function for "Number of poles" editor 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_txt2_np_h,'String');
	% Put the string
	set(lp_pr_np_h,'Value',eval(val));
end

if exist('ma_pr_win_h')
	% Get the value from the slider
	val=get(ma_pr_txt2_np_h,'String');
	% Put the string
	set(ma_pr_np_h,'Value',eval(val));
end

if exist('arma_pr_win_h')
	% Get the value from the slider
	val=get(arma_pr_txt2_np_h,'String');
	% Put the string
	set(arma_pr_np_h,'Value',eval(val));
end

if exist('sgram_pr_win_h')
	% Get the value from the slider
	val=get(sgram_pr_txt2_np_h,'String');
	% Put the string
	set(sgram_pr_np_h,'Value',eval(val));
end

if exist('spec_pr_win_h')
	% Get the value from the slider
	val=get(spec_pr_txt2_np_h,'String');
	% Put the string
	set(spec_pr_np_h,'Value',eval(val));
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?