close_main_formant_track.m
来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 35 行
M
35 行
%
% Callback function for Quit button of Main window
%
% And Close all the windows
close all;
clear all;
clc;
disp('Closing formant track windows and the program.');
disp('Please return. Have a nice day (or night).');
pause(1.);
disp('Returning to main GUI window.');
pause(1.);
clc;
% create message window and write message in that window also
message_window=figure('Unit','normalized',...
'Position',[0.05 0.2 0.55 0.2],...
'Resize','off',...
'Color',[1 1 1],...
'Numbertitle','off',...
'Name','Message');
axis('off');
ss=sprintf('Closing formant track windows and the program.');
text(-0.05,1,ss,'color',[0 0 1],'FontSize',10);
ss=sprintf('Thank you and returning to main GUI window.');
text(-0.05,5/6,ss,'color',[0 0 1],'FontSize',10);
pause(4.);
close(message_window);
clear message_window;
cd ..; %return to main folder
main_speechgui;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?