sdr v0.0.23
Released July 28, 2024
Changes
- Added calculation of filter noise bandwidth in
sdr.FIR.noise_bandwidth()
andsdr.IIR.noise_bandwidth()
. - Added calculation of threshold level above the noise power in
sdr.threshold_factor()
. - Added numerical calculation of the PDF of the sum and product of random variables in
sdr.sum_distribution()
,
sdr.sum_distributions()
, andsdr.multiply_distributions()
. - Renamed
sdr.design_frac_delay_fir()
tosdr.fractional_delay_fir()
. - Renamed
sdr.design_lowpass_fir()
tosdr.lowpass_fir()
. - Renamed
sdr.design_highpass_fir()
tosdr.highpass_fir()
. - Renamed
sdr.design_bandpass_fir()
tosdr.bandpass_fir()
. - Renamed
sdr.design_bandstop_fir()
tosdr.bandstop_fir()
. - Renamed
sdr.design_multirate_fir()
tosdr.multirate_fir()
. - Allowed use of SciPy window definition using
scipy.signal.windows.get_window()
for all filter design and plotting
functions.
Contributors
- Matt Hostetter (@mhostetter)