6.1 pyplot

import numpy as np
import matplotlib.pyplot as plt

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



桂田 祐史