资源简介
这是矩阵的广义低秩逼近的matlab源代码。
代码片段和文件信息
function [LMR err] = GLRAM(A L low1 low2 ITE)
%------------------------------------------------------------------
% Input A: data matrix
% L: initial L0
% low1: row dimension of reduced representation M{i}
% low2: column dimension of reduced representation M{i}
% ITE: number of iterations
% Output: L: left transformation
% M: reduced representation
% R: right transformation
% err: reconstruction error measured by RMSRE
%-------------------------------------------------------------------
%[row col] = size(A{1}); % row and column dimensions of A{i}
n = size(A2); % number of data points
%-------------------------------------------------------------------
for ite = 1:ITE
MU = 0;
for i =1:n
TU = L‘* A{i};
MU = MU + TU‘*TU;
end;
[V U]=eig(MU);
U=diag(U);
U=flipud(U);
V =fliplr(V);
R=V(:1:low2);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1848 2012-09-08 22:14 GLRAM\GLRAM.m
文件 1630 2013-04-23 10:47 GLRAM\Unti
文件 1630 2013-04-23 10:49 GLRAM\Unti
目录 0 2013-05-28 17:30 GLRAM
----------- --------- ---------- ----- ----
5108 4
- 上一篇:OBD规范 PID说明
- 下一篇:三角形面积计算器(海伦公式)
相关资源
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
- 梁宁产品经理思维30讲.pdf
- CHI760E辰华电化学工作站软件最新版
- SAPERPHCM葵花宝典系列之配置指南(电
- TangZhuoLin.rar
- Day3_NOI.zip
- 图解HTTP.pdf
- VisionProStandardv7.2(2Day).zip
- ElevatorSimulation.zip
- 14002454IPC-A-610DChinese(L).pdf
评论
共有 条评论