summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralekhgupta1441 <alekhgupta1441@gmail.com>2020-04-12 03:48:14 +0530
committeralekhgupta1441 <alekhgupta1441@gmail.com>2020-04-12 03:48:14 +0530
commitf259befbbe54e55fc4994899e92bcf5bf462fa2f (patch)
tree505386b758df8180e67335fa957b80314d652450
parentbad1040058004cd193bfea31c544f41a7e6d12e3 (diff)
gr-digital/python : Updated soft_dec_lut_gen.py
-rw-r--r--gr-digital/python/digital/soft_dec_lut_gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/python/digital/soft_dec_lut_gen.py b/gr-digital/python/digital/soft_dec_lut_gen.py
index 4503c4fea7..84f6de66e4 100644
--- a/gr-digital/python/digital/soft_dec_lut_gen.py
+++ b/gr-digital/python/digital/soft_dec_lut_gen.py
@@ -73,7 +73,7 @@ def soft_dec_table_generator(soft_dec_gen, prec, Es=1):
'''
- npts = 2.0**prec
+ npts = int(2.0**prec)
maxd = Es*numpy.sqrt(2.0)/2.0
yrng = numpy.linspace(-maxd, maxd, npts)
xrng = numpy.linspace(-maxd, maxd, npts)
@@ -110,7 +110,7 @@ def soft_dec_table(constel, symbols, prec, npwr=1):
re_max = max(numpy.array(constel).real)
im_max = max(numpy.array(constel).imag)
- npts = 2.0**prec
+ npts = int(2.0**prec)
yrng = numpy.linspace(im_min, im_max, npts)
xrng = numpy.linspace(re_min, re_max, npts)