diff options
| -rw-r--r-- | sources/thibaut/plot.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sources/thibaut/plot.py b/sources/thibaut/plot.py new file mode 100644 index 0000000..a639bf7 --- /dev/null +++ b/sources/thibaut/plot.py @@ -0,0 +1,5 @@ +import numpy as np +import matplotlib.pyplot as plt +a = np.loadtxt('test.data', unpack=True) +plt.plot(a) +plt.show() |
