diff options
author | Tom Rondeau | 2009-08-24 17:50:06 -0400 |
---|---|---|
committer | Tom Rondeau | 2009-08-24 17:50:06 -0400 |
commit | addee36a06e07fe4c7f01caf1ae1de17c1f75940 (patch) | |
tree | d44d49f59dc1548d159012f4d548d694cfc3cd0b /gnuradio-core/src | |
parent | ef44b1afa410d77dbf84ba79119c16bb4fd02606 (diff) | |
download | gnuradio-addee36a06e07fe4c7f01caf1ae1de17c1f75940.tar.gz gnuradio-addee36a06e07fe4c7f01caf1ae1de17c1f75940.tar.bz2 gnuradio-addee36a06e07fe4c7f01caf1ae1de17c1f75940.zip |
Fixed documentation for optfir band pass filters.
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r-- | gnuradio-core/src/python/gnuradio/optfir.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnuradio-core/src/python/gnuradio/optfir.py b/gnuradio-core/src/python/gnuradio/optfir.py index ad5743287..f09ab1e85 100644 --- a/gnuradio-core/src/python/gnuradio/optfir.py +++ b/gnuradio-core/src/python/gnuradio/optfir.py @@ -56,8 +56,10 @@ def low_pass (gain, Fs, freq1, freq2, passband_ripple_db, stopband_atten_db, ## Builds a band pass filter. # @param gain Filter gain in the passband (linear) # @param Fs Sampling rate (sps) -# @param freq1 End of stop band (in Hz) -# @param freq2 Start of pass band (in Hz) +# @param freq_sb1 End of stop band (in Hz) +# @param freq_pb1 Start of pass band (in Hz) +# @param freq_pb2 End of pass band (in Hz) +# @param freq_sb2 Start of stop band (in Hz) # @param passband_ripple_db Pass band ripple in dB (should be small, < 1) # @param stopband_atten_db Stop band attenuation in dB (should be large, >= 60) # @param nextra_taps Extra taps to use in the filter (default=2) @@ -80,8 +82,10 @@ def band_pass (gain, Fs, freq_sb1, freq_pb1, freq_pb2, freq_sb2, # spinning it up to the right center frequency # @param gain Filter gain in the passband (linear) # @param Fs Sampling rate (sps) -# @param freq1 End of stop band (in Hz) -# @param freq2 Start of pass band (in Hz) +# @param freq_sb1 End of stop band (in Hz) +# @param freq_pb1 Start of pass band (in Hz) +# @param freq_pb2 End of pass band (in Hz) +# @param freq_sb2 Start of stop band (in Hz) # @param passband_ripple_db Pass band ripple in dB (should be small, < 1) # @param stopband_atten_db Stop band attenuation in dB (should be large, >= 60) # @param nextra_taps Extra taps to use in the filter (default=2) |