📄 tveq_logbarrier.m
字号:
% tveq_logbarrier.m%% Solve equality constrained TV minimization% min TV(x) s.t. Ax=b.%% Recast as the SOCP% min sum(t) s.t. ||D_{ij}x||_2 <= t, i,j=1,...,n% Ax=b% and use a log barrier algorithm.%% Usage: xp = tveq_logbarrier(x0, A, At, b, lbtol, mu, slqtol, slqmaxiter)%% 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.%% 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.%% slqtol - Tolerance for SYMMLQ; ignored if A is a matrix.% Default = 1e-8.%% slqmaxiter - Maximum number of iterations for SYMMLQ; ignored% if A is a matrix.% Default = 200.%% Written by: Justin Romberg, Caltech% Email: jrom@acm.caltech.edu% Created: October 2005%function xp = tveq_logbarrier(x0, A, At, b, lbtol, mu, slqtol, slqmaxiter) if (nargin < 5), lbtol = 1e-3; endif (nargin < 6), mu = 10; endif (nargin < 7), slqtol = 1e-8; endif (nargin < 8), slqmaxiter = 200; endnewtontol = lbtol;newtonmaxiter = 50;N = length(x0);n = round(sqrt(N));% create (sparse) differencing matrices for TVDv = spdiags([reshape([-ones(n-1,n); zeros(1,n)],N,1) ... reshape([zeros(1,n); ones(n-1,n)],N,1)], [0 1], N, N);Dh = spdiags([reshape([-ones(n,n-1) zeros(n,1)],N,1) ... reshape([zeros(n,1) ones(n,n-1)],N,1)], [0 n], N, N);x = x0;Dhx = Dh*x; Dvx = Dv*x;t = (0.95)*sqrt(Dhx.^2 + Dvx.^2) + (0.1)*max(sqrt(Dhx.^2 + Dvx.^2));% choose initial value of tau so that the duality gap after the first% step will be about the origial TVtau = N/sum(sqrt(Dhx.^2+Dvx.^2));lbiter = ceil((log(N)-log(lbtol)-log(tau))/log(mu));disp(sprintf('Number of log barrier iterations = %d\n', lbiter));totaliter = 0;for ii = 1:lbiter [xp, tp, ntiter] = tveq_newton(x, t, A, At, b, tau, newtontol, newtonmaxiter, slqtol, slqmaxiter); totaliter = totaliter + ntiter; tvxp = sum(sqrt((Dh*xp).^2 + (Dv*xp).^2)); disp(sprintf('\nLog barrier iter = %d, TV = %.3f, functional = %8.3f, tau = %8.3e, total newton iter = %d\n', ... ii, tvxp, sum(tp), tau, totaliter)); x = xp; t = tp; tau = mu*tau; end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -