资源简介
流形学习算法之一,具有较强的数据挖掘能力,能够用于模式识别。
代码片段和文件信息
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
[tmp ind] = sort(G);
for i=1:size(G 1)
G(i ind((2 + k):end i)) = 0;
end
G = sparse(double(G));
G = max(G G‘); % Make sure distance matrix i
相关资源
- curvelet matlab工具箱
- Pattern Recognition and Machine Learning(高清
- Unix编程艺术mobi kindle电子书
-
Matlab+Simuli
nk-cmi、miller、双相码 - 随机梯度下降算法的MATLAB实现
- MATLAB_FEM_ToolBox_examples
- DeepLearningLSTM.m
- 线性拟合仿真-最小二乘法、正交回归
- Ornstein Uhlenbeck 过程的模拟
- matlab编写的有限元杆的计算
- matlab开发-MuellerStokesJonesCalculus
- 格子玻尔兹曼MATLAB运用(LBGK_D2Q9_poi
- 黑客与画家 kindle版 mobi
- Elm_KElm.rar
- 手写体识别——MATLAB代码
- 人脸识别yale数据.mat格式
- lle算法详解及matlab代码实现
- 斯坦福机器学习编程作业machine-learn
- MATLAB Codes for Finite Element Analysis
- bbocomplex 生物地理学算法
- Matlab+YALMIP+CPLEX的安装与入门
- MIMO-OFDM+WIRELESS+COMMUNICATIONS+WITH+MATLAB
- 设计模式. mobi格式
- Mathematica完美教程 - 从入门到精通
- Model Predictive Control System Design and Imp
- Linear Algebra with Applications 9th ed - Stev
- EMD HHT Matlab 信号分析,Google英文原版
- The Finite Element Method for Thermal and Stre
- Modelling.the.Wireless.Propagation.Channel.A.s
- MACHINE_LEARNING_with_NEURAL_NETWORKS_using_MA
评论
共有 条评论