-
大小: 167KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-06-13
- 语言: Matlab
- 标签: Locality Preserving Projections matlab代码
资源简介
局部保持投影 (Locality Preserving Projections )原文及其matlab代码,研究机器学习和模式识别的应该很多人想要。
代码片段和文件信息
function [eigvector eigvalue elapse] = LGE(W D options data)
% LGE: Linear Graph embedding
%
% [eigvector eigvalue] = LGE(W D options data)
%
% Input:
% data - data matrix. Each row vector of data is a
% sample vector.
% W - Affinity graph matrix.
% D - Constraint graph matrix.
% LGE solves the optimization problem of
% a* = argmax (a‘data‘WXa)/(a‘data‘DXa)
% Default: D = I
%
% options - Struct value in Matlab. The fields in options
% that can be set:
%
% ReducedDim - The dimensionality of the reduced
% subspace. If 0 all the dimensions
% will be kept. Default is 30.
%
% Regu - 1: regularized solution
% a* = argmax (a‘X‘WXa)/(a‘X‘DXa+ReguAlpha*I)
% 0: solve the sinularity problem by SVD (PCA)
% Default: 0
%
% ReguAlpha - The regularization parameter. Valid
% when Regu==1. Default value is 0.1.
%
% ReguType - ‘Ridge‘: Tikhonov regularization
% ‘Custom‘: User provided
% regularization matrix
% Default: ‘Ridge‘
% regularizerR - (nFea x nFea) regularization
% matrix which should be provided
% if ReguType is ‘Custom‘. nFea is
% the feature number of data
% matrix
%
% PCARatio - The percentage of principal
% component kept in the PCA
% step. The percentage is
% calculated based on the
% eigenvalue. Default is 1
% (100% all the non-zero
% eigenvalues will be kept.
% If PCARatio > 1 the PCA step
% will keep exactly PCARatio principle
% components (does not exceed the
% exact number of non-zero components).
%
%
% Output:
% eigvector - Each column is an embedding function for a new
% sample vector (row vector) x y = x*eigvector 属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 200194 2009-12-02 10:20 Locality Preserving Projections.pdf
文件 10940 2009-12-02 10:43 LGE.m
文件 5044 2009-12-02 10:43 LPP.m
----------- --------- ---------- ----- ----
216178 3
- 上一篇:MATLAB 2017b 破解文件
- 下一篇:最近邻分类器Matlab实现
相关资源
- 压缩感知(Compressed Sensing CS)matlab代
- Model Predictive Control
- Model Predictive Control System Design using M
- Model Predictive Control System Design and Imp
- Model+Predictive Control System Design and Imp
- 基于MATLAB的图像边缘检测算法的仿真
- ModelPredictiveControlSystemDesignandImplement
- mimo ofdm的MATLAB仿真
- JPEG compression 压缩代码
- 基于MATLAB的JPEG的编码和解码
- 神经网络预测电力系统负荷
- FCT(Fast Compress Tracking)目标跟踪程序
- Prescan自动驾驶仿真系统的最新培训手
- Fast Subspace Clustering via RepresentationSp
- PID and Predictive Control of Electrical Drive
- Prescan自动驾驶仿真培训资料
- preisach算法模型
- 基于prescan 的V2V仿真.rar
- Matlab Sobel/prewitt边缘检测
- 神经网络预测数据Neural Networks predic
- Sobel、Roberts、Prewitt边缘检测代码 MA
- matlab 分别用sobel prewitt roberts laplacia
- LPP局部保持投影MATLAB源代码
- 多用户walsh码扩频通信代码
- PreScan罗技方向联合控制仿真教程
- 图像处理/图像分割实验/prewitt/robert
- 深度置信网络时间序列预测.zip
- 图像边缘检测matlab源码kirsch、Laplaci
- ARIMA电力负荷预测附EUNITE数据1997-199
- 图像锐化MATLAB实现包含laplacian算子、
川公网安备 51152502000135号
评论
共有 条评论