资源简介
拉普拉斯特征映射算法,MATLAB编写。
代码片段和文件信息
function mappedX= LE(X no_dims k sigma)
%LAPLACIAN_EIGEN Performs non-linear dimensionality reduction using Laplacian Eigenmaps
%
% [mappedX mapping] = laplacian_eigen(X no_dims k sigma eig_impl)
%
% Performs non-linear dimensionality reduction using Laplacian Eigenmaps.
% The data is in matrix X in which the rows are the observations and the
% columns the dimensions.
% The reduced data is returned in the matrix mappedX.
if ~exist(‘no_dims‘ ‘var‘)
no_dims = 2;
end
if ~exist(‘k‘ ‘var‘)
k = 12;
end
if ~exist(‘sigma‘ ‘var‘)
sigma = 1;
end
% Construct neighborhood graph
disp(‘Constructing neighborhood graph...‘);
if size(X 1) < 4000
G = squareform(pdist(X ‘euclidean‘));
% Compute neighbourhood graph
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2006 2015-05-03 15:15 LE.m
----------- --------- ---------- ----- ----
2006 1
相关资源
- matlab分数阶混沌程序
- 霍夫变换圆检测的MATLAB程序
- 遗传算法的优化调度
- 求解带时间窗的VRP问题
- matlab车牌识别系统
- 三维模型文件的读取和显示(OBJ_Dis
- windPMSG 风机全功率模型
- 用蚁群算法解决CVRP
- matlabGNSS接收机主程序
- matlab混沌粒子群优化算法
- matlab实现ACO-OFDM功能
- Hu-Zernike
- MMC_CPS_4LEVEL 四电平低频情况下MMC控制
- AF-MATLAB 放大转发中继通信
- battery_control 这个一个关于储能电池充
- cellcount细胞分割 分水岭算法
- LASreadAll las文件是激光点云数据文件
- 可见光通信MIMO和OFDM系统仿真
-
Sfunction_ADRC-_Simuli
nk 基于S函数编写了 - MCMC_Metropolis_hasting_1D 算法的实现代码
- LGMS_FOA 改进的果蝇算法
- matlab遗传算法
- PCR 主成分回归在matlab上的实现
- kpca 用于主成分分析以及核主成分分析
- matlab实现A-star算法
- average_dwell_time 基于平均驻留时间的线
- A-DDE-Algorithm 红外图像分层处理及动态
- plot roc matlab绘制ROC曲线代码
- matlab光伏并网模型
- matlab四元数计算各个时刻的姿态数据
评论
共有 条评论