mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-27 04:43:52 +01:00
11 lines
329 B
Python
11 lines
329 B
Python
# This file is part of Pydemod
|
|
# Copyright Christophe Jacquet (F8FTK), 2014
|
|
# Licence: GNU GPL v3
|
|
# See: https://github.com/ChristopheJacquet/Pydemod
|
|
|
|
import numpy
|
|
|
|
import pydemod.filters.shaping as shaping
|
|
|
|
def pulse_shaping_filter(length, sample_rate):
|
|
return shaping.rrcosfilter(length, 1, 1/(2*1187.5), sample_rate+1) [1] |