代码搜索:SparseLab
找到约 46 项符合「SparseLab」的源代码
代码结果 46
www.eeworm.com/read/472943/1402530
m hdcpnpdfig8.m
%Figure 8.1a
nu = linspace(.01,.99);
Omega = shannon(nu) - PsiExt(nu);
plot(nu,Omega)
title('\Omega(\nu)')
xlabel('\nu')
%
% Copyright (c) 2006. David Donoho
%
%
% Part of SparseLab Ve
www.eeworm.com/read/232874/4695985
m rstmatrix.m
function Y = RSTMatrix(n)
I = eye(n);
for j = 1:n
Y(:,j) = RST(I(:,j));
end
%
% Copyright (c) 2006. Iddo Drori
%
%
% Part of SparseLab Version:100
% Created Tuesday March 28, 2006
www.eeworm.com/read/472943/1402536
m yfroms.m
function y = yFroms(s)
% y = yFroms(s)
%
% Calculates the y dual to s
% Eqn (6.9) in HDCSPNP2P
y = s + zeta1(s);
%
% Copyright (c) 2006. David Donoho
%
%
% Part of SparseLab Versi
www.eeworm.com/read/472943/1402698
m nrpshdfig2.m
%Figure 2a
nu = linspace(.01,.99);
xnu = CalcXnu(nu);
plot(nu,xnu)
title('x_\nu')
xlabel('\nu')
%
% Copyright (c) 2006. David Donoho
%
%
% Part of SparseLab Version:100
% Created Tues
www.eeworm.com/read/472943/1402709
m yfroms.m
function y = yFroms(s)
% y = yFroms(s)
%
% Calculates the y dual to s
% Eqn (6.9) in HDCSPNP2P
y = s + zeta1(s);
%
% Copyright (c) 2006. David Donoho
%
%
% Part of SparseLab Versi
www.eeworm.com/read/415194/6281723
m greed_omp_chol_sparselabwrap.m
function [s, err_norm, iter_time]=greed_omp_chol_SparseLabWrap(A,Pt,x,m,s_initial,STOPCRIT,STOPTOL,MAXITER,verbose,comp_err,comp_time)
% Wrapper function for SparseLab SolveOMP algorithm
%%%%%%%