example of linecirc function
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MANOJ KUMAR
am 18 Sep. 2020
Beantwortet: Deepak Meena
am 21 Sep. 2020
can anyone please show me an example of linecirc function
0 Kommentare
Akzeptierte Antwort
Deepak Meena
am 21 Sep. 2020
Hi Manoj,
linecirc gives the intersection points of a line and a circle.
Syntax:
[xout,yout] = linecirc(slope,intercpt,centerx,centery,radius);
This function finds the points of intersection given a circle defined by a center and radius in x-y coordinates, and a line defined by slope and y-intercept, or a slope of “inf” and an x-intercept. Two points are returned. When the objects do not intersect, NaNs are returned.
When the line is tangent to the circle, two identical points are returned. All inputs must be scalars.
Example:
[xout, yout] = linecirc(-1,3,0,0,5);
This will give the intersection point of line
and circle
.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!