From 65fc70d37b3251a9da9d20c2c66f386d51aff00f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lisa=20Sch=C3=A4tzle?= <lisa.schaetzle@kit.edu>
Date: Thu, 11 Jan 2024 09:21:17 +0000
Subject: [PATCH] Update FISTA_secondOrder.m

---
 src/FISTA_secondOrder.m | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/FISTA_secondOrder.m b/src/FISTA_secondOrder.m
index 7162c41..95acf32 100644
--- a/src/FISTA_secondOrder.m
+++ b/src/FISTA_secondOrder.m
@@ -1,6 +1,6 @@
 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.
 %
 % 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
 %           nr_of_iterations    Number of performed FISTA 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);
-- 
GitLab