diff options
author | Tom Rondeau | 2011-06-02 11:11:17 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-06-02 11:11:17 -0400 |
commit | 7829d145d3a00b64a9e203008a6ea4847e966388 (patch) | |
tree | 18df0747667d9644b777e95fa4133465da9df078 | |
parent | 7ed92966c100c0e70152a87ed730750b60f2903f (diff) | |
download | gnuradio-7829d145d3a00b64a9e203008a6ea4847e966388.tar.gz gnuradio-7829d145d3a00b64a9e203008a6ea4847e966388.tar.bz2 gnuradio-7829d145d3a00b64a9e203008a6ea4847e966388.zip |
core: fixed documentation for dc blocker.
-rw-r--r-- | gnuradio-core/src/lib/filter/gr_dc_blocker_cc.h | 5 | ||||
-rw-r--r-- | gnuradio-core/src/lib/filter/gr_dc_blocker_ff.h | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gnuradio-core/src/lib/filter/gr_dc_blocker_cc.h b/gnuradio-core/src/lib/filter/gr_dc_blocker_cc.h index 8e6164cbd..de9ccc0ea 100644 --- a/gnuradio-core/src/lib/filter/gr_dc_blocker_cc.h +++ b/gnuradio-core/src/lib/filter/gr_dc_blocker_cc.h @@ -39,7 +39,8 @@ gr_dc_blocker_cc_sptr gr_make_dc_blocker_cc (int D=32, bool long_form=true); * * This block implements a computationally efficient DC blocker that produces * a tigher notch filter around DC for a smaller group delay than an - * equivalent FIR filter or using a single pole IIR filter. + * equivalent FIR filter or using a single pole IIR filter (though the IIR + * filter is computationally cheaper). * * The block defaults to using a delay line of length 32 and the long form * of the filter. Optionally, the delay line length can be changed to alter @@ -48,7 +49,7 @@ gr_dc_blocker_cc_sptr gr_make_dc_blocker_cc (int D=32, bool long_form=true); * The long form of the filter produces a nearly flat response outside of * the notch but at the cost of a group delay of 2D-2. * - * The short form of the filter does not have a flat a response in the + * The short form of the filter does not have as flat a response in the * passband but has a group delay of only D-1 and is cheaper to compute. * * The theory behind this block can be found in the paper: diff --git a/gnuradio-core/src/lib/filter/gr_dc_blocker_ff.h b/gnuradio-core/src/lib/filter/gr_dc_blocker_ff.h index adaaca1e2..b632d81da 100644 --- a/gnuradio-core/src/lib/filter/gr_dc_blocker_ff.h +++ b/gnuradio-core/src/lib/filter/gr_dc_blocker_ff.h @@ -39,7 +39,8 @@ gr_dc_blocker_ff_sptr gr_make_dc_blocker_ff (int D=32, bool long_form=true); * * This block implements a computationally efficient DC blocker that produces * a tigher notch filter around DC for a smaller group delay than an - * equivalent FIR filter or using a single pole IIR filter. + * equivalent FIR filter or using a single pole IIR filter (though the IIR + * filter is computationally cheaper). * * The block defaults to using a delay line of length 32 and the long form * of the filter. Optionally, the delay line length can be changed to alter @@ -48,7 +49,7 @@ gr_dc_blocker_ff_sptr gr_make_dc_blocker_ff (int D=32, bool long_form=true); * The long form of the filter produces a nearly flat response outside of * the notch but at the cost of a group delay of 2D-2. * - * The short form of the filter does not have a flat a response in the + * The short form of the filter does not have as flat a response in the * passband but has a group delay of only D-1 and is cheaper to compute. * * The theory behind this block can be found in the paper: |