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.

clearConRules()
%-------------------------------------------------------------------------------------
%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 clear consequent goals
function clearConRules()

%Display confirmation dialogue box
response = questdlg('Are you sure you wish to clear all the rules?','Clear Rules','Yes','No','No');

switch response 
   %If yes button is pressed
   case 'Yes'
		%Clear all conseq goals
   	rule_box = findobj(gcbf,'Tag','conse_list');
		set(rule_box,'UserData',[]);
  		set(rule_box,'String',[]);		
end

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

Contact us at files@mathworks.com