The dataset I am using only has 200 degrees of the ellipse. The ellipse is not centered at (0,0). The data in this case ranges from 110 degrees to 310 degrees. I need to determine the center of the partial ellipse so that I can calculate the x and y radius to complete the ellipse.
I have tried using the Max and Min values of the dataset to determine the center, but that does not work correctly; (Max + Min)/2
The main focus is to complete the ellipse, so if someone has a better approach please let me know. I know if I obtain the center of the ellipse I can complete the ellipse, so that is the approach I have taken.
You could represent your ellipse as a general conic: $$Ax^2+Bxy+Cy^2+Dx+Ey+F=0$$ with unknown $A$, $B$, $C$, $D$, $E$, $F$. Plug in five points $(x,y)$, and you have enough equation to compute the coefficients, up to the obvious homegeneity. If you have more than five points, and there is some measurement uncertainty, you could solve the overdetermined system as a least squares problem instead.