mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-02-06 15:11:52 +08:00
9 lines
136 B
Python
9 lines
136 B
Python
|
|
from matplotlib import pyplot as plt
|
|
import sys
|
|
|
|
with open(sys.argv[1]) as f:
|
|
data = list(map(float, f))
|
|
|
|
plt.plot(data)
|
|
plt.show() |