Sinカーブ

2022/08/07 12:50

import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 500)
plt.plot(x,np.sin(x))
plt.show()

png