初步添加力显示,粗标定可以测试

This commit is contained in:
lennlouisgeek
2026-04-08 00:58:00 +08:00
parent 53c3dbfe35
commit d415c25afb
4 changed files with 53 additions and 6 deletions

11
data_processing/1.py Normal file
View File

@@ -0,0 +1,11 @@
import matplotlib.pyplot as plt
y = [0, 160, 260, 360, 460, 560, 660, 860, 1060, 1560, 2060]
x = [0, 74602, 105503, 131459, 153512, 172041, 193794, 218947, 240580, 295118, 332346]
plt.plot(x, y)
plt.title("Simple Line Plot")
plt.xlabel("g")
plt.ylabel("raw data")
plt.show()

Binary file not shown.

Binary file not shown.