In [16]:
from matplotlib import cm
from matplotlib import pyplot
import numpy as np
import sys
from matplotlib.backends.backend_pdf import PdfPages
from scipy.interpolate import griddata
%pylab inline


Populating the interactive namespace from numpy and matplotlib
WARNING: pylab import has clobbered these variables: ['griddata']
`%matplotlib` prevents importing * from pylab and numpy

In [17]:
arr = np.loadtxt(sys.argv[0]) #array = loadtxt(sys.argv[0]))
a = arr[0]
b= arr[1]
c= arr[2]
d=arr[3]
l=arr[4]

In [19]:
min_a = np.amin(a)
max_a = np.amax(a)
min_b = np.amin(b)
max_b = np.amax(b)
min_c = np.amin(c)
max_c = np.amax(c)
min_d = np.amin(d)
max_d = np.amax(d)
grid_a, grid_b = np.mgrid[min_a:max_a:200j, min_b:max_b:200j]

In [ ]:


In [ ]:
-

In [ ]:


In [ ]: