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 solve the overdetermined system as a least squares problem insteadseems to be what I should aim at doing. Any hints/links on this approach? – KSdev Jan 14 '14 at 19:00MatLabcode for this here – KSdev Jan 15 '14 at 13:31