I found this example for a simple plot on http://www.loria.fr/~rougier/teaching/matplotlib/#simple-plot:
from pylab import *
X = np.linspace(-np.pi, np.pi, 256,endpoint=True)
C,S = np.cos(X), np.sin(X)
plot(X,C)
plot(X,S)
show()
But then absolutely nothing happens. No errors, no warnings, just nothing. Same thing whether it be in the terminal or in Eclipse. I'm using Python 2. Am I missing something?
Thanks!