Skip to content
Snippets Groups Projects
Commit 65fc70d3 authored by Lisa Schätzle's avatar Lisa Schätzle
Browse files

Update FISTA_secondOrder.m

parent 835ad4b5
No related branches found
No related tags found
No related merge requests found
function [F, nr_of_iterations, Res] = FISTA_secondOrder(G, sampling, kappa, P_OmegaC, z, kmax) function [F, nr_of_iterations, Res] = FISTA_secondOrder(G, sampling, kappa, P_OmegaC, z, kmax)
% Solves the l1xl1 minimization problem for the splitting and/ or completion problem in Born % FISTA_SECONDORDER: Solves the l1xl1 minimization problem for the splitting and/ or completion problem in Born
% approximation of order 2 numerically by using the FISTA algorithm. % approximation of order 2 numerically by using the FISTA algorithm.
% %
% INPUT: G Observed far field matrix, nxhat*nd-array. % INPUT: G Observed far field matrix, nxhat*nd-array.
...@@ -17,6 +17,8 @@ function [F, nr_of_iterations, Res] = FISTA_secondOrder(G, sampling, kappa, P_Om ...@@ -17,6 +17,8 @@ function [F, nr_of_iterations, Res] = FISTA_secondOrder(G, sampling, kappa, P_Om
% nr_of_iterations Number of performed FISTA iterations. % nr_of_iterations Number of performed FISTA iterations.
% Res Residuum-norms for all FISTA iterations, vector of length nr_of_iterations. % Res Residuum-norms for all FISTA iterations, vector of length nr_of_iterations.
% %
% SYNTAX: FISTA_secondOrder(G, sampling, kappa, P_OmegaC, z, kmax)
%
% ********************************************************************************************************* % *********************************************************************************************************
nr_of_sources = size(z,2); nr_of_sources = size(z,2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment