Check Whether a Point Lies Inside,Outside or On a Circle

Checks whether a point lies inside,outside or on a circle defined by 3 other points.
4,3K download
Aggiornato 24 giu 2011

Visualizza la licenza

This program checks whether a point (x,y) lies inside,outside or on a circle defined by 3 other points.

Syntax: iscircle(X,Y,x,y), where X=[x1 x2 x3] and Y=[y1 y2 y3]. Thus, a circle can be made out of these 3 points-->(x1,y1), x2,y2)&(x3,y3).
Program checks whether point (x,y) lies inside,outside or on the circle.
ans=0 ==> lie on the circle.
ans=1 ==> lie outside the circle.
ans=-1 ==> lie inside the circle.

Cita come

Divakar Roy (2024). Check Whether a Point Lies Inside,Outside or On a Circle (https://www.mathworks.com/matlabcentral/fileexchange/8284-check-whether-a-point-lies-inside-outside-or-on-a-circle), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2010b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Interpolation in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.2.0.0

Added screenshot.

1.0.0.0

As suggested by Jerome, i have made the modifications.
So now it works very fast.Thank you Jerome.