简体   繁体   English

使用来自 python 的 RBF 进行插值的问题 scipy

[英]Problem interpolating using RBF from python's scipy

I am following the accepted answer of this thread using my ownd gridded data.我正在使用我自己的网格化数据关注此线程的已接受答案。

I load it as:我将其加载为:

import numpy as np
import matplotlib.pyplot as plt
from scipy import interpolate
import pylab as py

token = open('Ydata_48_of_50.txt','r')
linestoken=token.readlines()
tokens_column_numberX = 0

resulttokenX=[]

for x in linestoken:
    resulttokenX.append(x.split()[tokens_column_numberX])
token.close()

resulttokenX = np.array(resulttokenX)

(I do the same for Y and F(X, Y)) and then, I use what is displayed in the aforementioned link: (我对 Y 和 F(X, Y) 做同样的事情)然后,我使用上述链接中显示的内容:

xi, yi = np.linspace(resulttokenX.min(), resulttokenX.max(), 200), np.linspace(resulttokenY.min(), resulttokenY.max(), 200)
xi, yi = np.meshgrid(xi, yi)

# Interpolate
rbf = scipy.interpolate.Rbf(resulttokenX, resulttokenY, resulttokenF, function='linear')

Unfortunately, the last line here is an error.不幸的是,这里的最后一行是错误的。 I get我得到

    xi, yi = np.linspace(resulttokenX2.min(), resulttokenX2.max(), 200), np.linspace(resulttokenY2.min(), resulttokenY2.max(), 200)

  File "D:\Users\me\anaconda3\lib\site-packages\numpy\core\_methods.py", line 43, in _amin
    return umr_minimum(a, axis, None, out, keepdims, initial, where)

TypeError: cannot perform reduce with flexible type

I have no idea why this happens, since in the original code x appears in the last line and is我不知道为什么会这样,因为在原始代码中x出现在最后一行并且是

type(x)
Out[26]: numpy.ndarray

which is the same type of variable as这是相同类型的变量

type(resulttokenX2)
Out[24]: numpy.ndarray

I don't know why this happens.我不知道为什么会这样。 Can someone tell me what I have to do to reproduce the original code with my gridded data instead of random?有人能告诉我我必须做什么才能用我的网格化数据而不是随机数据重现原始代码吗?

Thanks.谢谢。

Edit:编辑:

resulttokenY2
Out[3]: 
array(['3.2000000e+01', '3.2000000e+01',

are the first lines of resulttokenY2是 resulttokenY2 的第一行

After some very helpful advice from Yann ziselman I have managed to do it.在 Yann ziselman 的一些非常有用的建议之后,我成功地做到了。 This is the full code:这是完整的代码:

import numpy as np
import matplotlib.pyplot as plt
from scipy import interpolate
import pylab as py
import scipy

token = open('Ydata_48_of_50.txt','r')
linestoken=token.readlines()
tokens_column_numberX = 0
tokens_column_numberY = 1
tokens_column_numberF = 2

resulttokenX=[]
resulttokenY=[]
resulttokenF=[]
for x in linestoken:
    resulttokenX.append(x.split()[tokens_column_numberX])
    resulttokenY.append(x.split()[tokens_column_numberY])
    resulttokenF.append(x.split()[tokens_column_numberF])
token.close()


resulttokenX2 = np.array(resulttokenX)
resulttokenY2 = np.array(resulttokenY)
resulttokenF2 = np.array(resulttokenF)



# Set up a regular grid of interpolation points
xi, yi = np.linspace(resulttokenX2.astype('float').min(), resulttokenX2.astype('float').max(), 100), np.linspace(resulttokenY2.astype('float').min(), resulttokenY2.astype('float').max(), 100)
xi, yi = np.meshgrid(xi, yi)

# Interpolate
rbf = scipy.interpolate.Rbf(resulttokenX2, resulttokenY2, resulttokenF2, function='linear')
zi = rbf(xi, yi)

plt.imshow(zi, vmin=resulttokenF2.astype('float').min(), vmax=resulttokenF2.astype('float').max(), origin='lower', extent=[resulttokenX2.astype('float').min(), resulttokenX2.astype('float').max(), resulttokenY2.astype('float').min(), resulttokenY2.astype('float').max()])
plt.scatter(resulttokenX2.astype('float'), resulttokenY2.astype('float'), c=resulttokenF2.astype('float'))
plt.colorbar()
plt.show()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM