Re: [Discuss-gnuradio] IIR Filter taps

2012-11-22 Thread Sreeraj Rajendran
I just pushed a branch to my github repo called iir_filter that implements the optional argument to the IIR filter as we discussed. The default is oldstyle=True and doesn't change any behavior. If you set this to False, you can directly copy taps from programs like gr_filter_design (the new

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-22 Thread Martin Braun (CEL)
On Wed, Nov 21, 2012 at 11:15:41AM -0500, Tom Rondeau wrote: [...] I just pushed a branch to my github repo called iir_filter that implements the optional argument to the IIR filter as we discussed. The default is oldstyle=True and doesn't change any behavior. If you set this to False, you

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-22 Thread Tom Rondeau
On Thu, Nov 22, 2012 at 3:34 AM, Martin Braun (CEL) martin.br...@kit.edu wrote: On Wed, Nov 21, 2012 at 11:15:41AM -0500, Tom Rondeau wrote: [...] I just pushed a branch to my github repo called iir_filter that implements the optional argument to the IIR filter as we discussed. The default is

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-21 Thread Tom Rondeau
On Mon, Nov 19, 2012 at 2:40 PM, Tom Rondeau t...@trondeau.com wrote: On Mon, Nov 19, 2012 at 1:57 PM, Johnathan Corgan johnat...@corganlabs.com wrote: On Mon, Nov 19, 2012 at 9:22 AM, Ed Criscuolo edward.l.criscu...@nasa.gov wrote: I agree that changing the way gr_iir_filter takes in the

[Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Tom Rondeau
Hi all, So we're working towards integrating the new gr_filter_design tool that Sreeraj built this summer for our GSoC project. One issue has come up with it is the specification of the IIR filter taps and how they are used in GNU Radio. To summarize the conversation between Sreeraj and myself:

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Marcus D. Leech
On 19/11/12 10:11 AM, Tom Rondeau wrote: Hi all, So we're working towards integrating the new gr_filter_design tool that Sreeraj built this summer for our GSoC project. One issue has come up with it is the specification of the IIR filter taps and how they are used in GNU Radio. To summarize

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Tom Rondeau
On Mon, Nov 19, 2012 at 10:20 AM, Marcus D. Leech mle...@ripnet.com wrote: On 19/11/12 10:11 AM, Tom Rondeau wrote: Hi all, So we're working towards integrating the new gr_filter_design tool that Sreeraj built this summer for our GSoC project. One issue has come up with it is the

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Martin Braun (CEL)
On Mon, Nov 19, 2012 at 10:20:45AM -0500, Marcus D. Leech wrote: GNU Radio's expected transfer function: H(z) = \ frac{\sum_{k=0}^{M} b_k z^{-k}}{1 - \sum_{k=1}^{N} a_k z^{-k}} But gr_filter_design gives the denominator (a_k) in the form: {1 + \sum_{k=1}^{N} a_k z^{-k}} [...] I

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Ed Criscuolo
On 11/19/12 10:11 AM, Tom Rondeau wrote: used? Should be change the way gr_iif_filter takes in the taps, or should we change how gr_filter_design produces them? Thanks for the feedback! Tom I agree that changing the way gr_iir_filter takes in the taps could be disruptive, unless backward

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Johnathan Corgan
On Mon, Nov 19, 2012 at 9:22 AM, Ed Criscuolo edward.l.criscu...@nasa.govwrote: I agree that changing the way gr_iir_filter takes in the taps could be disruptive, unless backward compatibility is maintained. Some of the group are using GnuRadio for operational systems. Yes. Here's two

Re: [Discuss-gnuradio] IIR Filter taps

2012-11-19 Thread Tom Rondeau
On Mon, Nov 19, 2012 at 1:57 PM, Johnathan Corgan johnat...@corganlabs.com wrote: On Mon, Nov 19, 2012 at 9:22 AM, Ed Criscuolo edward.l.criscu...@nasa.gov wrote: I agree that changing the way gr_iir_filter takes in the taps could be disruptive, unless backward compatibility is maintained.