AA_SYSTEM_MAT_FIELDS: fields (elem to nodes) fraction of system mat FC= aa_system_mat_fields( fwd_model ) input: fwd_model = forward model output: FC: s_mat= C' * S * conduct * C = FC' * conduct * FC;
0001 function FC= aa_system_mat_fields( fwd_model ) 0002 % AA_SYSTEM_MAT_FIELDS: fields (elem to nodes) fraction of system mat 0003 % FC= aa_system_mat_fields( fwd_model ) 0004 % input: 0005 % fwd_model = forward model 0006 % output: 0007 % FC: s_mat= C' * S * conduct * C = FC' * conduct * FC; 0008 0009 % (C) 2008 Andy Adler. License: GPL version 2 or version 3 0010 % $Id: aa_system_mat_fields.m 3086 2012-06-07 18:09:20Z aadler $ 0011 0012 warning('EIDORS:deprecated','AA_SYSTEM_MAT_FIELDS is deprecated as of 07-Jun-2012. Use SYSTEM_MAT_FIELDS instead.'); 0013 0014 FC = system_mat_fields( fwd_model );