资源简介
详细说明:很不错的流形学习算法 包含了MDS PCA ISOMAP LLE等算法
代码片段和文件信息
function varargout = mani(varargin)
% mani: MANIfold learning demonstration GUI
% by Todd Wittman Department of Mathematics University of Minnesota
% E-mail wittman@math.umn.edu with comments & questions.
% MANI Website: http://www.math.umn.edu/~wittman/mani/index.html
% Last Modified by GUIDE v2.5 10-Apr-2005 13:28:36
%
% Methods obtained from various authors.
% MDS -- Michael Lee
% ISOMAP -- J. Tenenbaum de Silva & Langford
% LLE -- Sam Roweis & Lawrence Saul
% Hessian LLE -- D. Donoho & C. Grimes
% Laplacian -- M. Belkin & P. Niyogi
% Diffusion Map -- R. Coifman & S. Lafon
% LTSA -- Zhenyue Zhang & Hongyuan Zha
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @mani_OpeningFcn ...
‘gui_OutputFcn‘ @mani_OutputFcn ...
‘gui_LayoutFcn‘ @mani_LayoutFcn ...
‘gui_Callback‘ []);
if nargin & isstr(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 mani is made visible.
function mani_OpeningFcn(hobject eventdata handles varargin)
handles.output = hobject;
guidata(hobject handles);
axes(handles.maniAXES);
axis off;
axes(handles.embedAXES);
axis off;
handles.X = 0;
handles.ColorVector = 0;
handles.Y = 0;
handles.isExample = 0;
handles.K = 12;
handles.d = 2;
handles.sigma = 1.45;
handles.runTime = 0;
handles.alpha = 0;
guidata(hobject handles);
warning off;
% --- Outputs from this function are returned to the command line.
function varargout = mani_OutputFcn(hobject eventdata handles)
varargout{1} = handles.output;
function MatrixEdit_CreateFcn(hobject eventdata handles)
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc
set(hobject‘BackgroundColor‘‘white‘);
else
set(hobject‘BackgroundColor‘get(0‘defaultUicontrolBackgroundColor‘));
end
function MatrixEdit_Callback(hobject eventdata handles)
% Hints: get(hobject‘String‘) returns contents of MatrixEdit as text
% str2double(get(hobject‘String‘)) returns contents of MatrixEdit as a double
function FileEdit_CreateFcn(hobject eventdata handles)
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc
set(hobject‘BackgroundColor‘‘white‘);
else
set(hobject‘BackgroundColor‘get(0‘defaultUicontrolBackgroundColor‘));
end
function FileEdit_Callback(hobject eventdata handles)
% Hints: get(hobject‘String‘) returns contents of FileEdit as text
% str2double(get(hobject‘String‘)) returns contents of FileEdit as a do
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 67242 2009-01-08 13:32 mani.m
----------- --------- ---------- ----- ----
67242 1
相关资源
- 频域块LMS算法
- matlab7.1win764位破解版.rar
- 图像融合MATLAB程序
- 最大流MATLAB
- hdb3编译码 matlab
- arma模型_matlab源码
- MATLAB计算对极线程序
- matlab求取二维数组极大值与极小值
- MATLAB非线性优化fmincon详解
- 4CPM_matlab
- MATLAB获取neurosky专注度数据
- Matlab男女声在线识别系统
- 一维二维中值滤波均值滤波matlab编码
- matlab 2007
- matlab贝叶斯源码iris分类
- PSO粒子群算法万能matlab代码注释详细
- 计算可见光通信OOK调制方式的BER mat
- 粒子群算法优化问题matlab程序
- matlab编的一个用于对统计数据进行威
- 最优化 一维不精确搜索wolfe matlab
- Matlab 广义高斯分布建模
- 遗传算法 车辆调度Matlab仿真
- matlab编译的bm3d去噪代码
- 利用Gabor滤波器实现的MATLAB掌纹识别系
- SPS并联机器人可达工作空间绘制的M
- puma机器人运动学正解MATLAB算法
- 追赶法求解三对角方程的MATLAB程序代
- 自适应遗传算法matlab代码
- matlab 在Hsv空间里画出颜色直方图程序
- 人脸识别算法matlab
评论
共有 条评论