Removed unnecessary import
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import numpy
|
||||
import numpy as np
|
||||
import itertools
|
||||
|
||||
@@ -48,4 +47,4 @@ class MLDecoder:
|
||||
"""
|
||||
correlations = np.dot(self._codewords_bpsk, y)
|
||||
|
||||
return self._codewords[numpy.argmax(correlations)]
|
||||
return self._codewords[np.argmax(correlations)]
|
||||
|
||||
Reference in New Issue
Block a user