I need to fit 10 data points (x,y
) into this equation:
ay² + bxy + cx + dy + e = x²
It's told that this is a ellipse-like equation. I can't do it with usual curve fitting tools because it is not really a function (one x
corresponds to 2 y
s). I can't either use ellipse curve fitting because there is no c*x
and d*y
in an ellipse equation. Any ideas?
Thanks in advance.
EDIT: Both Oil and AK4749 gave right answer! Thank you guys!