On 5 September 2011 07:14, Dr. Alexander Klein
<alexander.kl...@math.uni-giessen.de> wrote:
> Good morning,
>
> I'd like to submit the attached file for inclusion in the signal package. It
> implements IIR notch filters with very narrow bandwidths according to a
> method originally published bei Pei and Tsend in 1996 (see docs).
>
> Kind regards,
>
>        Alex
>
> P.s.: I hope I'll be able to submit further functions and patches every once
> in a while. If you like, you can enable SVN write-access for my source-forge
> account (axkma).

Hi Alex

I'm not an admin of the project so I can't give write-access to the
repository. I can, however, add your code in the mean time. I just
noticed a weird thing on the function. At the end you have:

----------
  c = denom;
  d = ( num + denom ) / 2;

  b = d;
  a = c;
------------
The function only returns "b" and "a" while "c" and "d" are never used
in the whole code. Why not replacing this by:

----------
  b = ( num + denom ) / 2;
  a = denom;
------------

Carnë

------------------------------------------------------------------------------
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to