资源简介
连 续 投 影 算 法(SPA)是 一 种 使 矢 量 空 间 共 线 性最小化的前向变量选择算法, 它的优势在于提取全波段的几个特征波长, 能够消除原始光谱矩阵中冗余的信息,可用于光谱特征波长的筛选。

代码片段和文件信息
function chain = projections_qr(XkM)
% Projections routine for the Successive Projections Algorithm using the
% built-in QR function of Matlab
%
% chain = projections(XkM)
%
% X --> Matrix of predictor variables (# objects N x # variables K)
% k --> Index of the initial column for the projection operations
% M --> Number of variables to include in the chain
%
% chain --> Index set of the variables resulting from the projection operations
X_projected = X;
norms = sum(X_projected.^2); % Square norm of each column vector
norm_max = max(norms); % Norm of the “largest“ column vector
X_projected(:k) = X_projected(:k)*2*norm_max/norms(k); % Scales the kth column so that it becomes the “largest“ column
[dummy1dummy2order] = qr(X_projected0);
chain = order(1:M)‘;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 26624 2012-11-28 21:42 连续投影算法\instructions.doc
文件 803 2012-11-28 21:42 连续投影算法\projections_qr.m
文件 4500 2012-11-28 21:42 连续投影算法\spa.m
文件 9552 2012-11-28 22:04 连续投影算法\spa2.fig
文件 988 2012-11-28 21:42 连续投影算法\statistical_prediction_error.m
文件 1133 2012-11-28 21:42 连续投影算法\validation.m
文件 1219 2012-11-28 21:42 连续投影算法\validation_metrics.m
文件 2379264 2012-11-28 21:42 连续投影算法\读书报告04 (刘飞-09.11.04).ppt
目录 0 2017-12-09 16:32 连续投影算法
----------- --------- ---------- ----- ----
2424083 9
- 上一篇:Opencv中文手册资料
- 下一篇:短信管理器
相关资源
- A note on balls in cone metr
- spaceclaim教程
- Symantec Brightmail AntiSpam产品手册
-
A web-ba
sed interview platform with geospat - Optimal recovery of functions on the sphere on
- Wavelet characterization for multipliers on So
- 构建用户自画像视频教程真实企业项
- Spark技术内幕 深入解析Spark内核架构设
- 基于Spark的PSO并行计算
- 小程序智能识别快递收货地址自动解
- spark streaming技术内幕与源码剖析
- Graph Algorithms:Practical Examples in Apach
- The Apache Ignite book PDF(正版购买的全网
- 管理学研究产出的区域马太效应浅析
- SSMSToolsPack.4.9.6.0破解版
- 论文研究 - 中国家族企业的研究热点
- The Mechanism of Explosive Spalling and Measur
- Adaptive Back-Stepping Sliding Mode Attitude T
- spark 机器学习 第二版 含源码 高清版
- 大数据项目之电商分析平台.pdf
- Spark机器学习 (彭特里思著) 中文
- SpaceClaim中文版-官方(教程)
- spartan 3e 资料原理图和用户手册
- 大数据组件介绍PPT
- Spark大数据处理:技术、应用与性能优
-
dSPACE Targetli
nk建模手册及高级建模 - Image Super-Resolution Via Sparse Representati
- space time block coding for wireless communica
- sparkMllib协同过滤测试数据ml-1m
- Spark快速大数据分析269495
评论
共有 条评论