matplotlib 모듈인데

 

처음 import numpy as np

        import matplotilb.pyplot as plt 넣은후에

주기1인 sin함수를 파란색 x범위(0~10 간격은0.01)만들때

x = np.arange(0, 10, 0.01);

y = np.sin(x,'b')

plt.plot(x,y)

plt.show()하면 되는거임?