Skip to content

Instantly share code, notes, and snippets.

@Kappaton
Last active September 9, 2017 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kappaton/bc176cd9a175135191239c4e8728bdd5 to your computer and use it in GitHub Desktop.
Save Kappaton/bc176cd9a175135191239c4e8728bdd5 to your computer and use it in GitHub Desktop.
失敗例(ライブラリのファイル名は使わない)
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 6, 0.1) #arangeメソッド[0.1, 0.2・・・5.9]
y = np.sin(x)
#グラフの描画
plt.plot(x, y)
plt.show()    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment