资源简介
流行学习的matlab代码,包括各种流形学习方法:MDS/ISOMAP/LLE/HLLE/LE/LTSA…… 图形界面,操作简单。
代码片段和文件信息
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‘)) re
相关资源
- matlab_vrp
- 润滑理论的matlab求解程序包括弹流和
- 3-RPS并联平台可达工作空间MATLAB求解
- AdaBoost等MatLab代码
- matlab提取多数据txt文件
- AR模型的matlab实现
- matlab实现自己的resize()函数
- 去掉Matlab运行时的黑框
- MATLABIMM交互多模型算法交互多模型算
-
单相桥式逆变器单周期控制simuli
n - sinc加窗滤波器
- 用MATLAB产生回声的源代码
- PUMA560 matlab程序
- matlab版hog+svm图像二分类
- matlab代码,通过蒙特卡罗方法计算n维
- 基于MATLAB的眼图画法
- 复杂网络幂律分布matlab仿真程序
- 轨迹跟踪---船舶航迹控制matlab程序
- 图像质量评价matlab源代码
- LFM信号模糊函数Matlab代码
- MATLAB GUI 多界面图像处理
- 小波图像融合matlab实现源代码
- 单轮abs控制 matlab仿真实现
- NSGA-II的matlab 仿真程序
- 感兴趣区域提取(ROI)matlab实现
- TDOA_AOA定位的扩展卡尔曼滤波算法MA
- 频域整形法构造1/f噪声
- 大时滞系统的模糊控制MATLAB仿真\\大时
- 能量检测matlab代码
- 将二进小波变换用于图像增强的MATL
评论
共有 条评论