Mercurial > hg > ltpda
diff m-toolbox/m/etc/ltpda_run_method.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/m/etc/ltpda_run_method.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,20 @@ +% LTPDA_RUN_METHOD runs an LTPDA method inside a script environment to +% ensure that callerIsMethod returns false and history will always be +% added. This can be useful when objects created deep inside a call-stack +% need to have history added. +% +% CALL +% out = ltpda_run_method(fcn, varargin) +% +% VERSION: $Id: ltpda_run_method.m,v 1.2 2011/04/09 07:38:59 hewitson Exp $ +% +function varargout = ltpda_run_method(fcn, varargin) + + if nargout > 0 + out = feval(fcn, varargin{:}); + varargout = utils.helper.setoutputs(nargout, out); + else + feval(fcn, varargin{:}); + end + +end