I have a set of points x,y
for which I am trying to fit a quadratic relationship so,
y = ax^2 + bx + c
I also have have some equality constraints on a,b,c,
for instance,
b=-a*K ( where K is a constant)
What might be the easiest way to solve this problem?
Ok so here is my effort on this: I can define an error function and define the constraints as penalty terms, and use a quadratic optimizer, I was curious if someone had an even easier way. Perhaps using something built-in, as far as I know, there are no standard built-in ways to do it.