diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-19 16:11:58 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-19 16:12:19 +0100 |
commit | f4ca82137e850e30d31e7008b34800d8b2699e5d (patch) | |
tree | ff19ad63f6ddf8a4f62b173c5955b2711646f123 /python/dpd/RX_Agc.py | |
parent | 9d2c85f7a2a23fcf9ce3c842d86227afed43a153 (diff) | |
download | dabmod-f4ca82137e850e30d31e7008b34800d8b2699e5d.tar.gz dabmod-f4ca82137e850e30d31e7008b34800d8b2699e5d.tar.bz2 dabmod-f4ca82137e850e30d31e7008b34800d8b2699e5d.zip |
DPD: Merge Model_PM and _AM into _Poly
Diffstat (limited to 'python/dpd/RX_Agc.py')
-rw-r--r-- | python/dpd/RX_Agc.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/python/dpd/RX_Agc.py b/python/dpd/RX_Agc.py index 4700e68..911f3c9 100644 --- a/python/dpd/RX_Agc.py +++ b/python/dpd/RX_Agc.py @@ -19,19 +19,19 @@ import dpd.Adapt as Adapt import dpd.Measure as Measure class Agc: - """The goal of the automatic gain control is to set the - RX gain to a value at which all received amplitudes can - be detected. This means that the maximum possible amplitude + """The goal of the automatic gain control is to set the + RX gain to a value at which all received amplitudes can + be detected. This means that the maximum possible amplitude should be quantized at the highest possible digital value. - A problem we have to face, is that the estimation of the - maximum amplitude by applying the max() function is very - unstable. This is due to the maximum’s rareness. Therefore - we estimate a far more robust value, such as the median, + A problem we have to face, is that the estimation of the + maximum amplitude by applying the max() function is very + unstable. This is due to the maximum’s rareness. Therefore + we estimate a far more robust value, such as the median, and then approximate the maximum amplitude from it. - Given this, we tune the RX gain in such a way, that the - received signal fulfills our desired property, of having + Given this, we tune the RX gain in such a way, that the + received signal fulfills our desired property, of having all amplitudes properly quantized.""" def __init__(self, measure, adapt, c): |