diff options
author | SARA <sara.halter@ost.ch> | 2021-11-30 20:32:54 +0100 |
---|---|---|
committer | SARA <sara.halter@ost.ch> | 2021-11-30 20:32:54 +0100 |
commit | 7c0fa48e6248cb8893460971509660c4511ceae9 (patch) | |
tree | e7a9fbcd38d9d8970fb780c27e0516429c562121 /notebooks/Test | |
parent | Merge remote-tracking branch 'origin/master' (diff) | |
download | Fading-7c0fa48e6248cb8893460971509660c4511ceae9.tar.gz Fading-7c0fa48e6248cb8893460971509660c4511ceae9.zip |
Theory mit fractional delay erweitert
Diffstat (limited to '')
-rw-r--r-- | notebooks/Test_file.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/notebooks/Test_file.py b/notebooks/Test_file.py index 1a987aa..c67d857 100644 --- a/notebooks/Test_file.py +++ b/notebooks/Test_file.py @@ -8,7 +8,7 @@ Created on Sat Nov 27 16:05:59 2021 import numpy as np import matplotlib.pyplot as plt -delay = 5.33 +delay = 6.37 ampl = 1 print(f"Tap with amplitude={ampl}, delay={delay}") @@ -29,10 +29,17 @@ signal = np.sin(2 * np.pi * t * 0.05) signal_shifted = np.convolve(h, signal, mode='full') #Time PLot +# plt.xlabel('Delay') +# plt.ylabel('Amplitude') +# #plt.title('') +# plt.plot(t, signal) +# plt.grid(True) +# plt.show() +# plt.plot(signal_shifted) +t1 =np.arange(0.0,order, 0.01) +plt.grid(True) +plt.stem(samples, h,linefmt='C0-') +plt.plot(t1,np.sinc(t1-delay),'b--') plt.xlabel('Delay') plt.ylabel('Amplitude') -#plt.title('') -plt.plot(t, signal) -plt.grid(True) plt.show() -plt.plot(signal_shifted)
\ No newline at end of file |