Find ellipse area

버전 1.0.0.0 (568 Bytes) 작성자: Samuel Cheng
A simple code to find the area of an ellipse from its quadratic equation
다운로드 수: 433
업데이트 날짜: 2014/3/7

라이선스 보기

A "potential" ellipse is described by the coefficients of its quadratic equation.
a x^2 + b xy + c y^2 + d x + e y + f = 0
the vector of coefficients, [a, b, c, d, e, f] should be used as the input.

For example, for a circle, x^2 + y^2 - 1 =0, the input should be [1 0 1 0 0 -1]. And find_ellipse_area([1 0 1 0 0 -1]) will return pi, the area of the circle.

If the quadratic equation doesn't represent an eclipse (for example, a hyperbola, instead), the function will return NaN.

인용 양식

Samuel Cheng (2024). Find ellipse area (https://www.mathworks.com/matlabcentral/fileexchange/45787-find-ellipse-area), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2010b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Quadratic Programming and Cone Programming에 대해 자세히 알아보기
태그 태그 추가

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0