Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试寻找与 MATLAB 的“fit”函数相同的 Python 函数。
具体来说,我正在寻找类似于以下 MATLAB 代码的内容:
fi = fit(bins, z, cubicinterp)
其中 z 和 bins 是列表。
尝试使用 SciPy 的curve_fit()来进行函数的一般拟合。
对于特定的插值,请查看 SciPy 的插值函数。
老实说,我认为有数百个 Python 函数可以完全满足您的需求(以及更多)。
这是一个使用 NumPy 的示例,但说真的,只要 google 一下,你就会感到惊讶:
numpy.polyfit