From 398668b52a776219af6d056f74b24ec43b13852f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sat, 23 Jul 2016 17:15:56 +0200 Subject: Increase number of correlations to 1000 --- correlate_with_ref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/correlate_with_ref.py b/correlate_with_ref.py index a587165..3bf8640 100755 --- a/correlate_with_ref.py +++ b/correlate_with_ref.py @@ -80,7 +80,7 @@ def calc_cir(channel, start_ix): # In TM1, the longest spacing between carrier components one can allow is # around 504 T (246us, or 74km at speed of light). This gives us a limit # on the number of correlations it makes sense to do. - max_component_delay = 500 # T + max_component_delay = 1000 # T cir = np.array([np.abs(np.corrcoef(channel[start_ix + corr_start_ix + i:start_ix + corr_start_ix + phase_ref.size + i], phase_ref)[0,1]) for i in range(max_component_delay)]) -- cgit v1.2.3