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/src/Model_AM.py | |
parent | 1c134cda607f0a430bda896af6157e61cadc897d (diff) | |
download | dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.tar.gz dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.tar.bz2 dabmod-f74fcc0f88c5e14e8582cc9791d80ef2f1c0eb71.zip |
Minor corrections
Diffstat (limited to 'dpd/src/Model_AM.py')
-rw-r--r-- | dpd/src/Model_AM.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |