Python入門に入れるべきか否か。マニュアルには追加したが。 以前,matplotlib でスライダやボタンを作る方法を調べたが,さっぱりわからなかった。matplotlib のページにあるんだけど,書いてあることの意味がわからなかったのだ。仕様書なので,書いてある ...
# simple draw a plot with x axis and y axis x = np.array([0,5]) # x axis y = np.array([0,5]) # y axis plt.plot(x,y) plt.show() #Draw two points in the diagram, one at position (1, 3) and one in ...