Renamed naive soft decision to maximum likelihood; Removed reference to R matrix

This commit is contained in:
2022-11-10 08:40:25 +01:00
parent 5865a8683f
commit f29c2e71de
4 changed files with 10 additions and 31 deletions

View File

@@ -4,7 +4,7 @@ import itertools
# TODO: Unify the interface regarding [0, 1]^n and [-1, 1]^n
class SoftDecisionDecoder:
class MLDecoder:
"""This class naively implements a soft decision decoder. The decoder calculates
the correlation between the received signal and each codeword and then chooses the
one with the largest correlation.