Mercurial > hg > ltpda
diff m-toolbox/classes/@pz/rz2iir.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/rz2iir.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,36 @@ +% RZ2IIR Return a,b IIR filter coefficients for a real zero designed using the bilinear transform. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: RZ2IIR Return a,b IIR filter coefficients for a real zero +% designed using the bilinear transform. +% +% CALL: [a,b] = rz2iir(z, fs) +% +% REMARK: This is just a helper function. This function should only be +% called from class functions. +% +% INPUT: z - zero object +% fs - the sample rate for the filter +% +% VERSION: $Id: rz2iir.m,v 1.7 2011/02/18 16:48:54 ingo Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = rz2iir(varargin) + + z = varargin{1}; + fs = varargin{2}; + + f0 = z.f; + w0 = f0*2*pi; + + a(1) = (2*fs + w0) / w0; + a(2) = (-2*fs + w0) / w0; + + b(1) = 1; + b(2) = 1; + + varargout{1} = a; + varargout{2} = b; +end +