AA_FWD_SOLVE: data= aa_fwd_solve( fwd_model, img) Fwd solver for Andy Adler's EIT code Input: fwd_model = forward model img = image struct Output: data = measurements struct Options: (to return internal FEM information) img.fwd_solve.get_all_meas = 1 (data.volt = all FEM nodes, but not CEM) img.fwd_solve.get_all_nodes= 1 (data.volt = all nodes, including CEM)
0001 function data =aa_fwd_solve(varargin) 0002 % AA_FWD_SOLVE: data= aa_fwd_solve( fwd_model, img) 0003 % Fwd solver for Andy Adler's EIT code 0004 % Input: 0005 % fwd_model = forward model 0006 % img = image struct 0007 % Output: 0008 % data = measurements struct 0009 % Options: (to return internal FEM information) 0010 % img.fwd_solve.get_all_meas = 1 (data.volt = all FEM nodes, but not CEM) 0011 % img.fwd_solve.get_all_nodes= 1 (data.volt = all nodes, including CEM) 0012 0013 % (C) 1995-2002 Andy Adler. License: GPL version 2 or version 3 0014 % Ref: Adler & Guardo (1996) IEEE T. Med Imaging 0015 % $Id: aa_fwd_solve.m 3083 2012-06-07 18:01:59Z aadler $ 0016 0017 % correct input paralemeters if function was called with only img 0018 warning('EIDORS:deprecated','AA_FWD_SOLVE is deprecated as of 07-Jun-2012. Use FWD_SOLVE_1ST_ORDER instead.'); 0019 0020 data = fwd_solve_1st_order( varargin{:} );