Removed unnecessary file allocation from functions.interpolateArray

This commit is contained in:
Luke Campagnola 2014-05-27 18:46:34 -04:00
parent 374b5a33ed
commit d004b133cd

View File

@ -538,7 +538,6 @@ def interpolateArray(data, x, default=0.0):
prof = debug.Profiler()
result = np.empty(x.shape[:-1] + data.shape, dtype=data.dtype)
nd = data.ndim
md = x.shape[-1]