add the script

This commit is contained in:
2025-03-10 23:09:56 +01:00
parent 91bb93dbe8
commit 53a36856ba
12 changed files with 190 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
# 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]