AA_INV_CONJ_GRAD inverse solver based on the CG inverse [Ref Shewchuck, 1994] img= aa_inv_conj_grad( inv_model, data1, data2) img => output image inv_model => inverse model struct data1 => differential data at earlier time data2 => differential data at later time
0001 function img= aa_inv_conj_grad( varargin ) 0002 % AA_INV_CONJ_GRAD inverse solver based on the CG 0003 % inverse [Ref Shewchuck, 1994] 0004 % img= aa_inv_conj_grad( inv_model, data1, data2) 0005 % img => output image 0006 % inv_model => inverse model struct 0007 % data1 => differential data at earlier time 0008 % data2 => differential data at later time 0009 % 0010 0011 % (C) 2005 Andy Adler. License: GPL version 2 or version 3 0012 % $Id: aa_inv_conj_grad.m 3108 2012-06-08 15:01:27Z bgrychtol $ 0013 0014 warning('EIDORS:deprecated','AA_INV_CONJ_GRAD is deprecated as of 07-Jun-2012. Use INV_SOLVE_CONJ_GRAD instead.'); 0015 0016 img = conj_grad_inv_solve( varargin{:} ); 0017