fitting.parabola

fitting.parabola(x, a, b, c)

A parabola.

Parameters:
  • x (array) – x-values.
  • a (float) – Offset.
  • b (float) – Linear term.
  • c (float) – Quadratic term.
Returns:

f(x) = c x^2 + b x + a.