📄 jlfx_help.m
字号:
function varargout = jlfx_help(varargin)% JLFX_HELP Application M-file for jlfx_help.fig% FIG = JLFX_HELP launch jlfx_help GUI.% JLFX_HELP('callback_name', ...) invoke the named callback.% Last Modified by GUIDE v2.0 25-Oct-2003 20:27:21if nargin == 0 % LAUNCH GUI fig = openfig(mfilename,'reuse'); % Use system color scheme for figure: set(fig,'Color',get(0,'defaultUicontrolBackgroundColor')); set(fig, 'name', '关于聚类分析'); % Generate a structure of handles to pass to callbacks, and store it. handles = guihandles(fig); guidata(fig, handles); str = {' 聚类分析的核心,一是选取一种距离或相似系数作为分类统计量;二是需要确定',... '一种聚类方法。聚类方法虽然也有很多种,但是,就其聚类过程的主要特点可以分为三大类:聚合法、分解法和调优法。',.... ' 系统聚类法是目前国内外使用最多的一种聚类法,属于聚合法。有关它的研究极',... '为丰富。系统聚类法的分类统计量一般采用距离系数统计量,其基本步骤为:',.... '1.每个样品为一类,计算各样品之间的距离系数;',... '2.把距离最小的两类合并为一类;',... '3.计算新的类间的距离;',.... '4.重复2、3步一直到合并为一类为止。',... ' 由于在分类的过程中,类与类间的距离可以有不同的定义,所以系统聚类法又可',.... '细分为常用的八种方法,它们是最短距离法、最长距离法、中间距离法、可变法、重 ',... '心法、类平均法、可变类平均法、离差平方和法。本软件系统的聚类分析采用了系统聚类法。'}; set(handles.jlfx_help_text, 'String', str); if nargout > 0 varargout{1} = fig; endelseif ischar(varargin{1}) % INVOKE NAMED SUBFUNCTION OR CALLBACK try if (nargout) [varargout{1:nargout}] = feval(varargin{:}); % FEVAL switchyard else feval(varargin{:}); % FEVAL switchyard end catch disp(lasterr); endend%| ABOUT CALLBACKS:%| GUIDE automatically appends subfunction prototypes to this file, and %| sets objects' callback properties to call them through the FEVAL %| switchyard above. This comment describes that mechanism.%|%| Each callback subfunction declaration has the following form:%| <SUBFUNCTION_NAME>(H, EVENTDATA, HANDLES, VARARGIN)%|%| The subfunction name is composed using the object's Tag and the %| callback type separated by '_', e.g. 'slider2_Callback',%| 'figure1_CloseRequestFcn', 'axis1_ButtondownFcn'.%|%| H is the callback object's handle (obtained using GCBO).%|%| EVENTDATA is empty, but reserved for future use.%|%| HANDLES is a structure containing handles of components in GUI using%| tags as fieldnames, e.g. handles.figure1, handles.slider2. This%| structure is created at GUI startup using GUIHANDLES and stored in%| the figure's application data using GUIDATA. A copy of the structure%| is passed to each callback. You can store additional information in%| this structure at GUI startup, and you can change the structure%| during callbacks. Call guidata(h, handles) after changing your%| copy to replace the stored original so that subsequent callbacks see%| the updates. Type "help guihandles" and "help guidata" for more%| information.%|%| VARARGIN contains any extra arguments you have passed to the%| callback. Specify the extra arguments by editing the callback%| property in the inspector. By default, GUIDE sets the property to:%| <MFILENAME>('<SUBFUNCTION_NAME>', gcbo, [], guidata(gcbo))%| Add any extra arguments after the last argument, before the final%| closing parenthesis.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -