资源简介

奇异值阈值算法是矩阵补全或称为矩阵完备中的一种常用算法,也是解决低秩问题的有效算法,这里分享给大家进行下载

资源截图

代码片段和文件信息


if ispc
    % reorth.f isn‘t compiled for Windows but this shouldn‘t be an
    % issue because the .m file version is pretty fast
    warning(‘off‘‘PROPACK:NotUsingMex‘);
end
%% Setup a matrix
randn(‘state‘2009);
rand(‘state‘2009);
% if you‘re daring try with complex numbers:
COMPLEX = false;
n1 = 1500; n2 = 3000; r = 10;
%n1 = 150; n2 = 300; r = 10;
if COMPLEX
    M = (randn(n1r)+1i*randn(n1r))*(randn(rn2)+1i*randn(rn2))/2;
else
    M = randn(n1r)*randn(rn2);
end
df = r*(n1+n2-r);
oversampling = 5; 
m = min(5*dfround(.99*n1*n2) ); 
p  = m/(n1*n2);

%Omega = randsample(n1*n2m);  % this requires the stats toolbox
% a workaround if you don‘t have the stats toolbox is this:
Omega = randperm(n1*n2); Omega = Omega(1:m);

data = M(Omega);
% add in noi

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-10-17 21:19  [SVT-Code]\
     文件      347604  2015-06-24 19:26  [SVT-Code]\private.zip
     目录           0  2018-10-17 21:19  [SVT-Code]\private1\
     文件         985  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.m
     文件       11748  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexa64
     文件        8049  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexglx
     文件       14072  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexmaci
     文件       25208  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexsg
     文件       26109  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexsg64
     文件       95852  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexsol
     文件       55808  2014-09-07 08:31  [SVT-Code]\private1\bdsqr.mexw32
     文件        3016  2014-09-07 08:31  [SVT-Code]\private1\bdsqr_mex.c
     文件        1504  2014-09-07 08:31  [SVT-Code]\private1\compute_int.m
     文件        1346  2014-09-07 08:31  [SVT-Code]\private1\dbdqr.c
     文件         445  2014-09-07 08:31  [SVT-Code]\private1\dbdqr.f
     文件         755  2015-07-05 22:26  [SVT-Code]\private1\Demo.cpp
     文件        7680  2015-07-05 22:25  [SVT-Code]\private1\Demo.mexw64
     文件        2056  2014-09-07 08:31  [SVT-Code]\private1\findBestMultiply.m
     文件       12943  2014-09-07 08:31  [SVT-Code]\private1\install_mex.m
     文件       23704  2014-09-07 08:31  [SVT-Code]\private1\lanbpro.m
     文件       11964  2014-09-07 08:31  [SVT-Code]\private1\lansvd.m
     文件         939  2014-09-07 08:31  [SVT-Code]\private1\refinebounds.m
     文件        3488  2014-09-07 08:31  [SVT-Code]\private1\reorth.c
     文件        3580  2014-09-07 08:31  [SVT-Code]\private1\reorth.f
     文件        2661  2014-09-07 08:31  [SVT-Code]\private1\reorth.m
     文件       12000  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexa64
     文件        8069  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexglx
     文件       21268  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexmaci
     文件       25428  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexsg
     文件       26694  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexsg64
     文件       86872  2014-09-07 08:31  [SVT-Code]\private1\reorth.mexsol
............此处省略27个文件信息

评论

共有 条评论