资源简介
详细说明:很不错的流形学习算法 包含了MDS PCA ISOMAP LLE等算法
![](http://www.nz998.com/pic/68548.jpg)
代码片段和文件信息
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
相关资源
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
- k近邻算法matlab实现
- matlab识别系统
评论
共有 条评论