This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import matplotlib.pyplot as plt
import numpy as np
import io
f = open(".power_log", "r", encoding="utf-8")
data = f.readlines()
x = np.arange(len(data))
y = np.loadtxt(".power_log")
plt.plot(x,y)
plt.show()