资源简介
连续投影算法,matlab程序可用,直接将数据放入excel就可运行。
代码片段和文件信息
function chain = projection(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)‘;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 193 2017-10-31 20:05 SPA\boduan_shang.mat
文件 799 2013-05-26 18:55 SPA\projection.m
文件 2745 2019-01-02 19:01 SPA\SPA.m
文件 1133 2007-02-18 13:40 SPA\validation.m
目录 0 2019-01-02 19:01 SPA
----------- --------- ---------- ----- ----
4870 5
相关资源
- matlab在GUI下语音播放
- matlab灰色系统理论多变量模型-MGM(
- 基于牛拉法的电力系统潮流计算程序
- GRNN神经网络.zip
- PM,MUSIC四阶累积量等几种DOA估计算法
- 基于matlab的双向A*算法
- 基于MATLAB的指纹定位算法 NN KNN WK
- matlab的mpt工具箱含voronoi函数
- 风电场电力系统可靠性评估matlab程序
- 基于MATLAB的卷积演示系统gui
- matlab激光光束
- vrp+matlab+模拟退火
- 2016matlab破解版笔记本内置摄像头配置
- EWT经验小波matlab应用实现信号处理
- 基于MATLAB鲁棒控制工具箱的计算机硬
- 电机直接起动matlab仿真
- MATLAB——将数组文件写入到dat文件中
- MATLAB——创建变量对话输入对话框
- MATLAB——三角波的实现
- MATLAB——求指定区域上泊松方程的数
- MATLAB——求解特征方程
- MATLAB——求解矩形域内的波动方程
- MATLAB——积分运算
- MATLAB——二维插值
- MATLAB——创建标准正态分布随机矩阵
- MATLAB车牌识别系统设计+图片库
- 灰色神经网络的预测算法—订单需求
- 神经网络matlab实现
- Boid集群运动无捕食者、有捕食者俩种
- 直方图均衡化 matlab 代码
评论
共有 条评论