• 大小: 1KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-19
  • 语言: Matlab
  • 标签: LE算法  MATLAB  算法  LE  

资源简介

拉普拉斯特征映射算法,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


评论

共有 条评论