アットウィキロゴ

cty677

import math
import numpy as np
from matplotlib import pyplot
 
x = np.random.randn(30)
y = np.sin(x) + np.random.randn(30)
pyplot.plot(x, y,"*")
 
pyplot.show()
最終更新:2017年11月10日 13:13