⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 close_main_analysis.m

📁 这是一个用于语音信号处理的工具箱
💻 M
字号:
%
% Callback function for Quit button of Main window
%  
% May 11 1997


close all;
clear all;
clc;
disp('Closing analysis windows and the program.');
pause(1.);
disp('Please return.  Have a nice day (or night).');

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.5 0.2],...
           'Resize','off',...
           'Color',[1 1 1],...
           'Numbertitle','off',...
           'Name','Message');
axis('off');        
ss=sprintf('Closing analysis 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -