• 大小:
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: matlab  

资源简介

压缩感知重构经典算法-BP算法,试用效果不错相对于OMP好很多,但重构时间较长

资源截图

代码片段和文件信息

% l1eq_pd.m
%
% Solve
% min_x ||x||_1  s.t.  Ax = b
%
% Recast as linear program
% min_{xu} sum(u)  s.t.  -u <= x <= u  Ax=b
% and use primal-dual interior point method
%
% Usage: xp = l1eq_pd(x0 A At b pdtol pdmaxiter cgtol cgmaxiter)
%
% x0 - Nx1 vector initial point.
%
% A - Either a handle to a function that takes a N vector and returns a K
%     vector  or a KxN matrix.  If A is a function handle the algorithm
%     operates in “largescale“ mode solving the Newton systems via the
%     Conjugate Gradients algorithm.
%
% At - Handle to a function that takes a K vector and returns an N vector.
%      If A is a KxN matrix At is ignored.
%
% b - Kx1 vector of observations.
%
% pdtol - Tolerance for primal-dual algorithm (algorithm terminates if
%     the duality gap is less 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4783  2013-06-02 17:22  l1BP.m

----------- ---------  ---------- -----  ----

                 4783                    1


评论

共有 条评论