SETFS Set the property 'fs' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: SETFS Set the property 'fs' CALL: obj = obj.setFs(12); obj = setFs(obj, 12); INPUTS: obj - is a ltpda_filter object VERSION: $Id: setFs.m,v 1.1 2008/07/18 11:13:34 ingo Exp $ HISTORY: 16-07-2008 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % SETFS Set the property 'fs' 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % DESCRIPTION: SETFS Set the property 'fs' 0005 % 0006 % CALL: obj = obj.setFs(12); 0007 % obj = setFs(obj, 12); 0008 % 0009 % INPUTS: obj - is a ltpda_filter object 0010 % 0011 % VERSION: $Id: setFs.m,v 1.1 2008/07/18 11:13:34 ingo Exp $ 0012 % 0013 % HISTORY: 16-07-2008 Diepholz 0014 % Creation 0015 % 0016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0017 0018 function obj = setFs(obj, val) 0019 %%% decide whether we modify the ltpda_filter-object, or create a new one. 0020 obj = copy(obj, nargout); 0021 0022 %%% set 'fs' 0023 obj.fs = val; 0024 end 0025