Removed unnecessary import

This commit is contained in:
Andreas Tsouchlos 2022-11-13 23:15:00 +01:00
parent ffcce7b3f2
commit b6ec2d3061

View File

@ -1,4 +1,3 @@
import numpy
import numpy as np import numpy as np
import itertools import itertools
@ -48,4 +47,4 @@ class MLDecoder:
""" """
correlations = np.dot(self._codewords_bpsk, y) correlations = np.dot(self._codewords_bpsk, y)
return self._codewords[numpy.argmax(correlations)] return self._codewords[np.argmax(correlations)]