formant_modify_quit.m

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

M
28
字号
%Callback function for the done/cancel button in the formant
%modification window
%
%Author : Karthik


if exist('formant_modify_fig') == 1
   eval('close(formant_modify_fig);',catch1);
   clear formant_modify_fig;
end

if exist('formant_display_fig1') == 1
   eval('close(formant_display_fig1);',catch1);
   clear formant_display_fig1;
end

if exist('formant_display_fig2') == 1
   eval('close(formant_display_fig2);',catch1);
   clear formant_display_fig2;
end

%Equate the original variables to their modified values
if exist('Ff1')
   Fb = Fb1;
   Ff = Ff1;
end

⌨️ 快捷键说明

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