summaryrefslogtreecommitdiff
path: root/gr-channels/lib/selective_fading_model_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-channels/lib/selective_fading_model_impl.cc')
-rw-r--r--gr-channels/lib/selective_fading_model_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-channels/lib/selective_fading_model_impl.cc b/gr-channels/lib/selective_fading_model_impl.cc
index dfd7b74ca9..3594ec4aa0 100644
--- a/gr-channels/lib/selective_fading_model_impl.cc
+++ b/gr-channels/lib/selective_fading_model_impl.cc
@@ -95,7 +95,7 @@ namespace gr {
gr_complex ff_H(d_faders[j]->next_sample());
for(size_t k=0; k<d_taps.size(); k++){
float dist = k-d_delays[j];
- float interpmag = d_sintable.sinc(2*M_PI*dist);
+ float interpmag = d_sintable.sinc(M_PI*dist);
d_taps[k] += ff_H * interpmag * d_mags[j];
}
}