summaryrefslogtreecommitdiff
path: root/bin/kaxxxxp-viewer
diff options
context:
space:
mode:
Diffstat (limited to 'bin/kaxxxxp-viewer')
-rwxr-xr-xbin/kaxxxxp-viewer8
1 files 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]")