Stop using griddata, use matplotlib.mlab.griddata !

I just discovered that I was using

from griddata import griddata

in quite a lot of python scripts I wrote for scientific data plotting. While struggling to recompile it under my new win7 x64 box, I googled a little and found out that it’s now included in matplotlib (which was already installed…). So, now, I’ll use :

from matplotlib.mlab import griddata

Leave a Reply

Your email address will not be published. Required fields are marked *

*