linspaceとsin関数でのグラフ 2017年12月31日 by 河副 太智 Leave a Comment from scipy import sparse import numpy as np %matplotlib inline import matplotlib.pyplot as plt x = np.linspace(-10,10,100) y = np.sin(x) plt.plot(x,y,marker="x") 12345678910 from scipy import sparseimport numpy as np%matplotlib inline import matplotlib.pyplot as plt x = np.linspace(-10,10,100)y = np.sin(x)plt.plot(x,y,marker="x") Tweet [`yahoo` not found]
コメントを残す