资源简介

基于Apriori算法的商品推荐系统(MATLAB)

资源截图

代码片段和文件信息

function varargout = chaxun(varargin)
% CHAXUN MATLAB code for chaxun.fig
%      CHAXUN by itself creates a new CHAXUN or raises the existing
%      singleton*.
%
%      H = CHAXUN returns the handle to a new CHAXUN or the handle to
%      the existing singleton*.
%
%      CHAXUN(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in CHAXUN.M with the given input arguments.
%
%      CHAXUN(‘Property‘‘Value‘...) creates a new CHAXUN or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before chaxun_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to chaxun_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Edit the above text to modify the response to help chaxun

% Last Modified by GUIDE v2.5 19-May-2014 16:34:50

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @chaxun_OpeningFcn ...
                   ‘gui_OutputFcn‘  @chaxun_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before chaxun is made visible.
function chaxun_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to chaxun (see VARARGIN)

% Choose default command line output for chaxun
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes chaxun wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = chaxun_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;



function edit1_Callback(hobject eventdata handles)
% hobject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
input = str2num

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3455  2014-05-28 21:30  apriori\chaxun.fig

     文件       5647  2014-05-28 21:24  apriori\chaxun.m

     文件        221  2007-09-07 09:47  apriori\in.m

     文件       7412  2014-05-21 10:09  apriori\main.m

     文件       1114  2014-05-19 16:58  apriori\query.m

     文件        219  2014-05-28 21:23  apriori\queryuser.m

     文件        243  2007-09-07 11:39  apriori\setsub.m

     文件    4461953  2014-05-16 16:38  apriori\SPdata.csv

     文件     503835  2014-05-21 09:39  apriori\spdata.mat

     文件     532370  2014-05-21 09:39  apriori\spdata4.mat

     文件        782  2014-05-21 09:40  apriori\sql1.mat

     文件        318  2014-05-21 09:40  apriori\sql2.mat

     文件        232  2007-09-24 16:08  apriori\subset.m

     文件        708  2007-09-26 14:54  apriori\ziji.m

     文件        314  2014-05-20 10:47  apriori\说明.txt

     目录          0  2014-05-28 21:24  apriori

----------- ---------  ---------- -----  ----

              5518823                    16


评论

共有 条评论