?? buildernewrule.m
字號(hào):
%-------------------------------------------------------------------------------------
%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 add a rule to the goals as either consequent or antecedent
function builderNewRule
item_box = findobj(gcbf,'Tag','rule_box');
item = get(item_box,'String');
rule_part = findobj(gcbf,'Tag','rule_part');
rule_side = get(rule_part,'Value');
%convert entered item to
item_as_num = str2num(item);
if (~isempty(item_as_num))
%If rule_side is 1 then add to antecedents box and UserData
if rule_side == 1
rule_box = findobj(gcbf,'Tag','antec_list');
%Otherwise it is consequent add to consequent box and UserData
else
rule_box = findobj(gcbf,'Tag','conse_list');
end
rules = get(rule_box,'UserData');
next_element = size(rules,2)+1;
rules{next_element} = item;
set(rule_box,'UserData',rules);
set(rule_box,'String',rules);
set(item_box,'String','');
else
questdlg('Please enter a vaild item first','Entry Error','OK','OK');
end
%End----------------------------------------------------------------------
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -