?? opendatafile.m
字號:
%-------------------------------------------------------------------------------------
%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 select a file to perform mine on
function openDataFile()
%Open default open file dialgoue window
[fileName, pathName] = uigetfile;
%Get handle of object who's UserData will store file data-----------
edit_file_name = findobj(gcbf,'Tag','edit_file_name');
%If a file has been selected
if fileName ~= 0
%Set file edit box to selected file
clear dataFile;
set(edit_file_name,'String',cat(2,pathName,fileName));
end
%End----------------------------------------------------------------------
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -