% z - 2xnr_of_sources vector containing presumed source positions
% landweberparam.Nmax -- max nr of iterations
% landweberparam.tol -- tolerance to be met in the Landweber iteration
% landweberparam.omega -- relaxation parameter in the Landweber itertation
% softshrinkparam.mu -- threshold parameter in the soft shrinkage operatore
% softshrinkparam.type -- type of soft-shrinkage to be used ('real'/'complex')
% OUTPUT: f - cell array containing split far field components
%
% EXAMPLE USAGE:
% initialize some variables
nxhat=sampling.nxhat;
nd=sampling.nd;
nr_of_sources=size(z,2);
[X,Y]=meshgrid(1:nr_of_sources,1:nr_of_sources);
indices=[reshape(X,nr_of_sources^2,1),reshape(Y,nr_of_sources^2,1)];% (J^2+1)*2-array that indicates the finite dimensional subspace where the corresponding block should lie in.
% (0,0) indicates $V_\Omega$; (j,l) indicates $V_{N_l,N_j}$, i.e.
% cutoff-parameter N_l in row direction und N_j in column direction
clearXY
% initialize some more variables
X=cell(nr_of_sources^2,1);% columns of B correspond to the vectors b_j in the manuscript
foriters=1:nr_of_sources^2
X{iters}=zeros(nxhat,nd);
end
KstarRes=cell(nr_of_sources^2,1);
iteri=1;% iteration counter
Resnorm=zeros(landweberparam.kmax,1);% norm of the residual in each step of the iteration
Resnorm(1)=landweberparam.tol+1;% just needed to get iteration started; will be removed later
indices=[reshape(X,nr_of_sources^2,1),reshape(Y,nr_of_sources^2,1)];% (J^2+1)*2-array that indicates the finite dimensional subspace where the corresponding block should lie in.
% (0,0) indicates $V_\Omega$; (j,l) indicates $V_{N_l,N_j}$, i.e.
% cutoff-parameter N_l in row direction und N_j in column direction
clearXY
% initialize some more variables:
X=cell(nr_of_sources^2,1);% columns of B correspond to the vectors b_j in the manuscript
foriters=1:nr_of_sources^2
X{iters}=zeros(nxhat,nd);
end
KstarRes=cell(nr_of_sources^2,1);
iteri=1;% iteration counter
Res=zeros(landweberparam.kmax,1);% norm of the residual in each step of the iteration
Res(1)=landweberparam.tol+1;% just needed to get iteration started; will be removed later