• 大小: 5KB
    文件类型: .m
    金币: 2
    下载: 1 次
    发布日期: 2021-01-01
  • 语言: Matlab
  • 标签: 机器学习  降维  

资源简介

经典降维算法局部保持投影LPP算法的matlab代码,希望对需要降维算法的童鞋有所帮助

资源截图

代码片段和文件信息

function [eigvector eigvalue] = LPP(W options data)
% LPP: Locality Preserving Projections
%
%       [eigvector eigvalue] = LPP(W options data)

%             Input:
%               data       - Data matrix. Each row vector of fea is a data point.
%               W       - Affinity matrix. You can either call “constructW“
%                         to construct the W or construct it by yourself.
%               options - Struct value in Matlab. The fields in options
%                         that can be set:
%                           
%                         Please see LGE.m for other options.
%
%             Output:
%               eigvector - Each column is an embedding function for a new
%                           data point (row vector) x  y = x*eigvector

评论

共有 条评论