m_anal.m
来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 53 行
M
53 行
%
% Callback function for Analysis button in the Main window
%
% Modified by D. G. Childers August, 1998
% Set position and size of analysis window
PV=[2 96 170 140];
s2 = 'Analysis';
% Open analysis window
while exist('m_an_win_h')==1
try1 = 'get(m_an_win_h,''position'');';
eval(try1,catch2);
if check ==0
clear m_an_win_h;
check = 1;
break;
end
s1 = get(m_an_win_h,'Name');
if ~strcmp(s1,s2)
clear m_an_win_h;
break;
end
figure(m_an_win_h);
break;
end;
if exist('m_an_win_h')~=1;
m_an_win_h=figure('Position',PV,...
'Resize','on',...
'Numbertitle','off',...
'color',BACK_COLOR,...
'Name',s2);
m_an_pb_pit_h=uicontrol('Style','pushbutton',...
'Position',[10 100 150 30],...
'String','Formant contours',...
'Callback','trk_main');
m_an_pb_save_h=uicontrol('Style','pushbutton',...
'Position',[10 60 150 30],...
'String','Save',...
'Callback','save_for');
m_an_pb_cancel_h=uicontrol('Style','pushbutton',...
'Position',[10 20 150 30],...
'String','Cancel',...
'Callback','ana_ok');
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?