我有一套像
这样的点X = [1, 2, 3, 4, 5, ..]
Y = [9, 7, 5, 3, 5, ..]
我需要为Y找到插值抛物线,就像它已经完成我的线路MNK方法一样。 NumPy中有任何功能吗?我不是很擅长二次近似,所以我自己也找不到它。感谢。
答案 0 :(得分:0)
找出numpy.polyfit:
Fit a polynomial p(x) = p[0] * x**deg + ... + p[deg] of degree deg to points (x, y).
Returns a vector of coefficients p that minimises the squared error.
它完全符合我的需要,有关numpy.polyfit的更多信息。