I have max nine points of a function as the following array in Python:
array([0.04625943, 0.04646331, 0.04636401, 0.04636489, 0.04651253,
0.0462647 , 0.04549576, 0.04484105, 0.04463366], dtype=float32)
I use numpy library and need to polyfit(2nd order) this array and find the maximum of that polyfit.
How can this be achieved?