CALC_MOVE_JACOBIAN Computes the Jacobian matrix for conductivity and electrode movement variables in 3D EIT. Args: fwd_model - the EIDORS object forward model img_bkgd - the image background conductivity Returns: J - the Jacobian matrix [Jc, Jm] WARNING: THIS CODE IS EXPERIMENTAL AND GIVES PROBLEMS SEE: Camille Gomez-Laberge, Andy Adler Direct EIT Jacobian calculations for conductivity change and electrode movement, Physiol. Meas., 29:S89-S99, 2008
0001 function J = calc_move_jacobian(varargin) 0002 % CALC_MOVE_JACOBIAN Computes the Jacobian matrix for conductivity and 0003 % electrode movement variables in 3D EIT. 0004 % Args: fwd_model - the EIDORS object forward model 0005 % img_bkgd - the image background conductivity 0006 % Returns: J - the Jacobian matrix [Jc, Jm] 0007 % 0008 % WARNING: THIS CODE IS EXPERIMENTAL AND GIVES PROBLEMS 0009 % SEE: Camille Gomez-Laberge, Andy Adler 0010 % Direct EIT Jacobian calculations for conductivity change 0011 % and electrode movement, Physiol. Meas., 29:S89-S99, 2008 0012 0013 % (C) 2007, Camille Gomez-Laberge and Andy Adler. 0014 % License: GPL version 2 or version 3 0015 % $Id: calc_move_jacobian.m 3101 2012-06-08 14:34:08Z bgrychtol $ 0016 0017 warning('EIDORS:deprecated','CALC_MOVE_JACOBIAN is deprecated as of 08-Jun-2012. Use JACOBIAN_MOVEMENT instead.'); 0018 0019 J = jacobian_movement(varargin{:});