cvode-rust-wrap/test-solver/plot.py
Arthur Carcano 1ea23c85a2 Init
2021-05-07 18:29:56 +02:00

7 lines
158 B
Python

import pandas as pd
import sys
import matplotlib.pyplot as plt
df = pd.read_csv(sys.stdin,names=['t','x',r'\dot{x}'],index_col='t')
ax = df.plot()
plt.show()