Skip to content

Instantly share code, notes, and snippets.

@fernandogrd
Created September 30, 2011 19:27
Show Gist options
  • Save fernandogrd/1254737 to your computer and use it in GitHub Desktop.
Save fernandogrd/1254737 to your computer and use it in GitHub Desktop.
example.py
import numpy as np
from pylab import *
x = np.arange(0,100,10)
y = 2 * x
plot(x,sin(x),x, cos(y))
show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment