Code covered by the BSD License  

Highlights from
ARMADA Data Mining Tool version 1.4

image thumbnail
from ARMADA Data Mining Tool version 1.4 by James Malone
An association rule data mining tool for experimentation and analysis.

exitProgram
%-------------------------------------------------------------------------------------
%ARMADA - Association Rule Mining And Deduction Analysis
%Desciprtion:	Data Mining Tool for extraction of association rules and analysis
%					of deduction methods.
%Author& 
%Copyright: 	James Malone
%Date:			14/04/03
%Version:		1.2
%-------------------------------------------------------------------------------------

%-------------------------------------------------------------------------

%Function to request confirmation of exiting
function exitProgram

option = questdlg('Are you sure you wish to exit?', ...
                  'Exit Program', ...
                  'Yes','No','No');

switch option,
		case 'Yes', 
         close all;
      case 'No',
        	break;
end % switch

%End----------------------------------------------------------------------

Contact us at files@mathworks.com