TIKHONOV_IMAGE_PRIOR calculate image prior Reg= tikhonov_image_prior( inv_model ) Reg => output regularization term inv_model => inverse model struct
0001 function Reg= tikhonov_image_prior( inv_model ); 0002 % TIKHONOV_IMAGE_PRIOR calculate image prior 0003 % Reg= tikhonov_image_prior( inv_model ) 0004 % Reg => output regularization term 0005 % inv_model => inverse model struct 0006 0007 % (C) 2005 Andy Adler. License: GPL version 2 or version 3 0008 % $Id: tikhonov_image_prior.m 3127 2012-06-08 16:19:25Z bgrychtol $ 0009 0010 %pp= fwd_model_parameters( inv_model.fwd_model ); 0011 0012 warning('EIDORS:deprecated','TIKHONOV_IMAGE_PRIOR is deprecated as of 08-Jun-2012. Use PRIOR_TIKHONOV instead.'); 0013 Reg = prior_tikhonov(inv_model);