Mercurial > hg > ltpda
diff m-toolbox/classes/@pz/setF.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/classes/@pz/setF.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,24 @@ +% SETF Set the property 'f' +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: SETF Set the property 'f' and computes 'ri' +% +% CALL: obj = obj.setF(1); +% obj = setF(obj, 1); +% +% INPUTS: obj - is a pz object +% +% VERSION: $Id: setF.m,v 1.2 2011/02/18 16:48:54 ingo Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function ii = setF(ii, val) + + %%% decide whether we modify the pz-object, or create a new one. + ii = copy(ii, nargout); + + %%% set 'f' + ii.f = val; + %%% Then compute and set ri + ii.ri = pz.fq2ri(ii.f, ii.q); +end