Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ellipse.py #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ellipse.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LsqEllipse:
----------
coef_ : array
Estimated coefficients for the Least squares fit to the elliptical data
containing the values [a,b,c,d,f,g].T corresponding to Eqn 1 (*)
containing the values [a,b,c,d,e,f].T corresponding to Eqn 1 (*)
ax**2 + bxy + cy**2 + dx + ey + f

References
Expand Down Expand Up @@ -124,7 +124,7 @@ def coefficients(self):

Returns
-------
[a,b,c,d,f,g] corresponding to ax**2 + bxy + cy**2 + dx + ey + f from (*)
[a,b,c,d,e,f] corresponding to ax**2 + bxy + cy**2 + dx + ey + f from (*)
"""
self._assert_ellipse_found()
return tuple(c for c in self.coef_.ravel())
Expand Down