0

我正在尝试复制 Scipy Cookbook 功能:

from scipy import ogrid, sin, mgrid, ndimage, array
x,y = ogrid[-1:1:5j,-1:1:5j]
fvals = sin(x)*sin(y)
newx,newy = mgrid[-1:1:100j,-1:1:100j]
x0 = x[0,0]
y0 = y[0,0]
dx = x[1,0] - x0
dy = y[0,1] - y0
ivals = (newx - x0)/dx
jvals = (newy - y0)/dy
coords = array([ivals, jvals])
newf = ndimage.map_coordinates(fvals, coords)

通过使用我自己的功能,该功能必须适用于许多场景

import scipy
import numpy as np
"""N-D interpolation for equally-spaced data"""                                         
x = np.c_[plist['modx']]                                                                
y = np.transpose(np.c_[plist['mody']])                                                  
pdb.set_trace()                                                                         
#newx,newy = np.meshgrid(plist['newx'],plist['newy'])                                   
newx,newy = scipy.mgrid[plist['modx'][0]:plist['modx'][-1]:-plist['remapto'],               
                     plist['mody'][0]:plist['mody'][-1]:-plist['remapto']]                                                                                        
x0 = x[0,0]                                                                             
y0 = y[0,0]                                                                             
dx = x[1,0] - x0                                                                        
dy = y[0,1] - y0                                                                        
ivals = (newx - x0)/dx                                                                  
jvals = (newy - y0)/dy                                                                  
coords = scipy.array([ivals, jvals])                                                    
for i in np.arange(ivals.shape[0]):                                                     
    nvals[i] = scipy.ndimage.map_coordinates(ivals[i], coords)                                                                                                                              

我很难让这段代码正常工作。问题区域是: 1.) 重新创建此行:newx,newy = mgrid[-1:1:100j,-1:1:100j]。就我而言,我有一个带有矢量形式网格的字典。我尝试使用 np.meshgrid 重新创建此行,但随后在 coords = scipy.array([ivals, jvals]) 行上出现错误。我正在寻找一些帮助来重新创建此 Cookbook 功能并使其更具动态性,非常感谢任何帮助。

/米

4

1 回答 1

1

您应该查看map_coordinates. 我看不到您尝试插入的实际数据在代码中的位置。我的意思是,大概你有一些数据inputxand的函数y;即input = f(x,y)你想要插值。在您展示的第一个示例中,这是数组fvals。这应该是你的第一个论点map_coordinates

例如,如果您尝试插入的数据是input,它应该是 shape 的二维数组(len(x),len(y)),那么插入的数据将是:

interpolated_data = map_coordinates(input, coords)
于 2012-07-09T22:39:57.623 回答