From 835ad4b5ffaa218576d7bafcbeda2a2fd9f9481c 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:20:35 +0000 Subject: [PATCH] Update CG_secondOrder.m --- src/CG_secondOrder.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CG_secondOrder.m b/src/CG_secondOrder.m index d154027..867992a 100644 --- a/src/CG_secondOrder.m +++ b/src/CG_secondOrder.m @@ -1,6 +1,6 @@ function [F, nr_of_iterations, Res] = CG_secondOrder(G, sampling, kappa, P_Omega, z, R, kmax, tol) -% Solves the least squares problem for the splitting and/ or completion problem +%% CG_SECONDORDER: Solves the least squares problem for the splitting and/ or completion problem % in Born approximation of order 2 numerically by using the cg method. % % INPUT: G Observed far field matrix, nxhat*nd-array. @@ -19,6 +19,8 @@ function [F, nr_of_iterations, Res] = CG_secondOrder(G, sampling, kappa, P_Omega % nr_of_iterations Number of performed CG iterations. % Res Residuum-norms for all CG iterations, vector of length nr_of_iterations. % +% SYNTAX: CG_secondOrder(G, sampling, kappa, P_Omega, z, R, kmax, tol) +% % ********************************************************************************************************* % initialize some variables -- GitLab