Skip to content

Instantly share code, notes, and snippets.

@mrklein
Created February 24, 2014 15:23
Show Gist options
  • Save mrklein/9190315 to your computer and use it in GitHub Desktop.
Save mrklein/9190315 to your computer and use it in GitHub Desktop.
data = N.loadtxt(filename)
x = 100*data[:, xidx]
y = 100*data[:, yidx]
fl = data[:, flidx]
asp = 4.5/(xlim[1] - xlim[0])
P.figure(figsize=(8, 8*asp))
P.clf()
P.tricontour(x, y, fl, [0.5], colors='black')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment