diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-06-06 09:56:22 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-06-06 09:56:22 -0700 |
commit | ddbaaabc927b2ecc18ad84a238fa3235001bc79b (patch) | |
tree | 24ef6464e7adf3221d51e2528b0a966eb705261f /gr-trellis/src/examples/python/test_turbo_equalization.py | |
parent | a09f727276fc0b0af979d962c44260ea2fdcd554 (diff) |
core: removed gr_chunks_to_symbols_XX after move to gr-digital
Diffstat (limited to 'gr-trellis/src/examples/python/test_turbo_equalization.py')
-rwxr-xr-x | gr-trellis/src/examples/python/test_turbo_equalization.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-trellis/src/examples/python/test_turbo_equalization.py b/gr-trellis/src/examples/python/test_turbo_equalization.py index 18bfb022a9..d97f3f2c29 100755 --- a/gr-trellis/src/examples/python/test_turbo_equalization.py +++ b/gr-trellis/src/examples/python/test_turbo_equalization.py @@ -59,7 +59,7 @@ def run_test (fo,fi,interleaver,Kb,bitspersymbol,K,dimensionality,tot_constellat inter = trellis.permutation(interleaver.K(),interleaver.INTER(),1,gr.sizeof_short) enc_in = trellis.encoder_ss(fi,0) # initial state = 0 # essentially here we implement the combination of modulation and channel as a memoryless modulation (the memory induced by the channel is hidden in the innner FSM) - mod = gr.chunks_to_symbols_sf(tot_constellation,dimensionality) + mod = digital.chunks_to_symbols_sf(tot_constellation,dimensionality) # CHANNEL add = gr.add_ff() |