AA_INV_SOLVE inverse solver using approach of Adler&Guardo 1996 img= inv_solve_diff_GN_one_step( inv_model, data1, data2) img => output image (or vector of images) inv_model => inverse model struct data1 => differential data at earlier time data2 => differential data at later time both data1 and data2 may be matrices (MxT) each of M measurements at T times if either data1 or data2 is a vector, then it is expanded to be the same size matrix
0001 function img= inv_solve_diff_GN_one_step( varargin ) 0002 % AA_INV_SOLVE inverse solver using approach of Adler&Guardo 1996 0003 % img= inv_solve_diff_GN_one_step( inv_model, data1, data2) 0004 % img => output image (or vector of images) 0005 % inv_model => inverse model struct 0006 % data1 => differential data at earlier time 0007 % data2 => differential data at later time 0008 % 0009 % both data1 and data2 may be matrices (MxT) each of 0010 % M measurements at T times 0011 % if either data1 or data2 is a vector, then it is expanded 0012 % to be the same size matrix 0013 0014 % (C) 2005 Andy Adler. License: GPL version 2 or version 3 0015 % $Id: aa_inv_solve.m 3117 2012-06-08 15:25:26Z bgrychtol $ 0016 0017 warning('EIDORS:deprecated','AA_INV_SOLVE is deprecated as of 06-Jun-2012. Use INV_SOLVE_DIFF_GN_ONE_STEP instead.'); 0018 0019 img = inv_solve_diff_GN_one_step( varargin{:} );