gpt4 book ai didi

python - scipy.interpolate.Rbf 的意外结果

转载 作者:行者123 更新时间:2023-12-01 07:38:59 26 4
gpt4 key购买 nike

使用 RBF 进行插值时出现一些错误。这是一维的示例。我认为这与我的 y 值彼此之间的接近程度有关。有什么办法可以解决这个问题吗?

import numpy as np
from scipy.interpolate import Rbf, interp1d
import matplotlib.pyplot as plt

x = np.array([0.77639752, 0.8136646, 0.85093168, 0.88819876, 0.92546584, 0.96273292, 1.])
y = np.array([0.97119742, 0.98089758, 0.98937066, 0.99540737, 0.99917735, 1., 0.99779049])
xi = np.linspace(min(x),max(x),1000)

fig = plt.figure(1)
plt.plot(x,y,'ko', label='Raw Data')

#RBF
rbfi = Rbf(x,y, function='linear')
plt.plot(xi,rbfi(xi), label='RBF (linear)')

rbfi = Rbf(x,y, function='cubic')
plt.plot(xi,rbfi(xi), label='RBF (cubic)')

#1D
f = interp1d(x,y, kind='cubic')
plt.plot(xi,f(xi), label='Interp1D (cubic)')


plt.plot(x,y,'ko', label=None)
plt.grid()
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.tight_layout()

plt.savefig('RBFTest.png')

enter image description here

最佳答案

事实上,如果实现得当,RBF 插值使用 polyharmonic spline一维中的 r^3 与自然三次样条一致,并且是“最平滑”插值。

不幸的是,scipy.interpolate.Rbf,尽管有这个名字,似乎并不是近似理论中已知的 RBF 方法的正确实现。错误在the line左右

self.nodes = linalg.solve(self.A, self.di)

他们忘记了构建多调和 RBF 时的(线性)多项式项!系统应该是(2) .

现在,人们也不应该盲目信任interp1dWhat algorithm used in interp1d function in scipy.interpolate表明它可能不使用自然三次样条,而是使用不同的条件。帮助页面中没有提及:需要进入 python 源代码,我担心我们会在那里找到什么。

Is there a fix for this?

如果这是一项严肃的工作,请自行实现 RBF 插值算法。或者,如果您想在 python 中尝试不同的实现,显然有来自密歇根大学的一个:https://rbf.readthedocs.io 。如果你这样做,你能在这里发布你的发现吗?如果没有,您已经通过演示一个重要的 SciPy 错误提供了很好的服务 - 谢谢!

关于python - scipy.interpolate.Rbf 的意外结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56820251/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com