-
大小: 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实现
相关资源
- 神经网络预测数据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算子、
- 随机森林工具包RF_MexStandalone-v0.02-pr
- 3.2.2kalman_tempreture.m
- Matlab code for Precision/Recall ROC Accuracy
- Prewitt分割实现
- Compressed Sensing 压缩感知书籍
- matlab 用于核pca(KPCA)的库函数
- Latent Low-Rank Representation for Subspace Se
- vs_prerequisites_x64_lp_chs.msi
- 马岳林数字预失真代码
- CompressiveAndApplications 《压缩感知与应
-
链路预测matlab程序(li
nkPredictionMa - pso-svm-prediction 优化支持向量机中的正
- matlab_code_for_video_compression
- 用多脉冲发射的雷达ofdm信号 (OFDM
- svd图像压缩(SVD_comprecession)
- MMmpc 多模型预测控制
- 《功率变换器和电气传动的预测控制
- sparse_representation 最热门的稀疏表示的
- PNNpredict19
评论
共有 条评论