diff options
author | andreas128 <Andreas> | 2017-09-27 21:57:18 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-27 21:57:18 +0200 |
commit | f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71 (patch) | |
tree | e5a4ccb26960580853c6929636185b441258861b /dpd | |
parent | 1c134cda607f0a430bda896af6157e61cadc897d (diff) | |
download | dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.tar.gz dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.tar.bz2 dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.zip |
Minor corrections
Diffstat (limited to 'dpd')
-rwxr-xr-x | dpd/main.py | 2 | ||||
-rw-r--r-- | dpd/src/Model_AM.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dpd/main.py b/dpd/main.py index d2b7297..5eaa81f 100755 --- a/dpd/main.py +++ b/dpd/main.py @@ -234,7 +234,7 @@ while i < num_iter: ['i', 'tx_mer', 'tx_shoulder_tuple', 'rx_mer', 'rx_shoulder_tuple', 'mse', 'tx_gain', 'digital_gain', 'rx_gain', 'rx_median', - 'tx_median'])) + 'tx_median', 'lr', 'n_meas'])) # Model specific logging if dpddata[0] == 'poly': diff --git a/dpd/src/Model_AM.py b/dpd/src/Model_AM.py index c6f7903..85f6495 100644 --- a/dpd/src/Model_AM.py +++ b/dpd/src/Model_AM.py @@ -67,7 +67,7 @@ class Model_AM: ax.set_xlabel("TX Amplitude") ax.set_ylabel("RX Amplitude") xlim = ax.get_xlim() - ax.set_xlim(max(xlim[0], -1), min(xlim[1], 2)) + ax.set_xlim(-0.5, 1.5) ax.legend(loc=4) fig.tight_layout() |