4.1 pyplot

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(0, 10, 0.2)
y = np.sin(x)
plt.plot(x,y)
plt.show()

桂田 祐史
2017-12-10