diff options
-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() |