From 112ddcc2ac7050df45cf0a73201d155c020f8500 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 6 Nov 2021 18:42:03 +0100 Subject: increase marker size for U/I/P plots --- bin/kaxxxxp-viewer | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/kaxxxxp-viewer b/bin/kaxxxxp-viewer index 93467ea..742d6af 100755 --- a/bin/kaxxxxp-viewer +++ b/bin/kaxxxxp-viewer @@ -396,22 +396,22 @@ def plot_data(data, mode): plt.ylabel("Power [W]") elif mode == "UI": - plt.plot(data[:, 1], data[:, 2], "bs", markersize=1) + plt.plot(data[:, 1], data[:, 2], "bs", markersize=2) plt.xlabel("Voltage [V]") plt.ylabel("Current [A]") elif mode == "UP": - plt.plot(data[:, 1], data[:, 1] * data[:, 2], "bs", markersize=1) + plt.plot(data[:, 1], data[:, 1] * data[:, 2], "bs", markersize=2) plt.xlabel("Voltage [V]") plt.ylabel("Power [W]") elif mode == "IU": - plt.plot(data[:, 2], data[:, 1], "bs", markersize=1) + plt.plot(data[:, 2], data[:, 1], "bs", markersize=2) plt.xlabel("Current [A]") plt.ylabel("Voltage [V]") elif mode == "IP": - plt.plot(data[:, 2], data[:, 1] * data[:, 2], "bs", markersize=1) + plt.plot(data[:, 2], data[:, 1] * data[:, 2], "bs", markersize=2) plt.xlabel("Current [A]") plt.ylabel("Power [W]") -- cgit v1.2.3