from
FeatureFinder 2.4.1
by Feature Finder A user-friendly tool for signal filtering and feature extraction. Well-suited to large data sets!
Comm_Exit()
% Comm_Exit()
% This function confirms that the user wishes to exit the program.
%
% Input arguments:
% MSG - the message string
%
% Output arguments;
% none
%
% Written by Alex Andrews, 2010?2011.
function Comm_Exit()
% Verify that the user wishes to exist
sInput=questdlg('Are you sure you wish to exit?','Verify exit',...
'Exit','Stay','Stay');
if strcmpi(sInput,'exit')
Exit_Program();
end