GN_ABS_SOLVER absolute solver using Gauss Newton approximation img= gn_abs_solve( inv_model, data1, data2) img => output image (or vector of images) inv_model => inverse model struct data1 => EIT data Parameters: inv_model.parameters.max_iterations = N_max iter
0001 function img= GN_abs_solve( varargin) 0002 % GN_ABS_SOLVER absolute solver using Gauss Newton approximation 0003 % img= gn_abs_solve( inv_model, data1, data2) 0004 % img => output image (or vector of images) 0005 % inv_model => inverse model struct 0006 % data1 => EIT data 0007 % 0008 % Parameters: 0009 % inv_model.parameters.max_iterations = N_max iter 0010 0011 % (C) 2010 Andy Adler. License: GPL version 2 or version 3 0012 % $Id: GN_abs_solve.m 3116 2012-06-08 15:22:35Z bgrychtol $ 0013 0014 % Step 1: fit to background 0015 warning('EIDORS:deprecated','GN_ABS_SOLVE is deprecated as of 08-Jun-2012. Use INV_SOLVE_ABS_GN instead.'); 0016 img = inv_solve_abs_GN(varargin{:});