资源简介
压缩感知代码,matlab,l1qc_logbarrier
代码片段和文件信息
% l1qc_logbarrier.m
%
% Solve quadratically constrained l1 minimization:
% min ||x||_1 s.t. ||Ax - b||_2 <= \epsilon
%
% Reformulate as the second-order cone program
% min_{xu} sum(u) s.t. x - u <= 0
% -x - u <= 0
% 1/2(||Ax-b||^2 - \epsilon^2) <= 0
% and use a log barrier algorithm.
%
% Usage: xp = l1qc_logbarrier(x0 A At b epsilon lbtol mu 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.
%
% epsilon - scalar constraint relaxation parameter
%
% lbtol - The log barrier algorithm terminates when the duality gap <= lbtol.
% Also the number of log barrier iterations is completely
% determined by lbtol.
% Default = 1e-3.
%
% mu - Factor by which to increase the barrier constant at each iteration.
% Default = 10.
%
% cgtol - Tolerance for Conjugate Gradients; ignored if A is a matrix.
% Default = 1e-8.
%
% cgmaxiter - Maximum number of iterations for Conjugate Gradients; ignored
% if A is a matrix.
% Default = 200.
%
% Written by: Justin Romberg Caltech
% Email: jrom@acm.caltech.edu
% Created: October 2005
%
function xp = l1qc_logbarrier(x0 A At b epsilon lbtol mu cgtol cgmaxiter)
largescale = isa(A‘function_handle‘);
if (nargin < 6) lbtol = 1e-3; end
if (nargin < 7) mu = 10; end
if (nargin < 8) cgtol = 1e-8; end
- 上一篇:matlab图像预处理的所有代码
- 下一篇:自己编写的WFCM算法
相关资源
- 压缩感知off grid代码论文见2013
- 压缩感知 OMP重构一维二维信号matlab仿
- 压缩感知OMP算法代码
- 压缩感知之基追踪法BP
- lws压缩感知matlab 代码
- 神经电压缩感知matlab
- 基于压缩感知的信道估计
- 压缩感知离散余弦变换基-小波基MAT
- 压缩感知块稀疏BOMP算法
- 压缩感知图像MATLAB代码美国乔治亚理
- 压缩感知DOA估计
- 大牛写的压缩感知的OMP算法绝对简单
- 压缩感知之分段正交匹配追踪法StOM
- 压缩感知之迭代硬阈值法IHT可直接运
- 分布式压缩感知边信息提取的matlab代
- 小波变换的压缩感知图像处理
- Compressed Sensing 压缩感知书籍
- 一维信号压缩还原信号
- FISTA 压缩感知的图像使用快速迭代s
- 用于压缩感知的各种稀疏变换基和观
- 压缩感知的图像融合技术
- 利用压缩感知的关联成像程序,计算
- 图像的压缩感知之AMP算法 matlab程序
- 压缩感知信道估计算法Matlab 代码
- 压缩感知 图像处理 MATLAB
- 线性调频信号(LFM)压缩感知的稀疏
- IRLS 迭代加权二范数算法
- CSR sim 压缩感知雷达信号处理matlab仿真
- BCS贝叶斯压缩感知和分布式贝叶斯压
- 分布式压缩感知代码 (DCS SOMP)
评论
共有 条评论