Ask Your Question

flutefreak7's profile - activity

2011-04-27 16:37:10 +0200 answered a question Updating scipy in sage

I had this problem and was able to use "from matplotlib.mlab import griddata". I'm playing with portable python which appears to have:

matplotlib version 0.98.52 scipy version 0.7.0.dev5180 and numpy version 1.2.1

The matplotlib.mlab version of griddata accepts exactly 5 arguments like this: zi = griddata(x,y,z,xi,yi) and uses delauney nearest neighbor triangulation.

Hope that helps!