I need to find out the intersecting points of two circles. I have the center points and the radius of each circle. I need to do it in MATLAB. Any help will be appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Find the equations of the circles. Make sure to account for the negative of the square root or else you will just have a semi circle. Set the equations of the two circles equal to eachother. |
||||
|
|
Assume a triangle ABC, where A and B are the centers of the circle, and C is one or the other intersection point. a, b, and c are the sides opposite the corresponding corners. alpha, beta, and gamma are the angles associated with A, B, and C, respectively. Then, b^2+c^2 - 2*b*c*cos(alpha) = a^2. Knowing alpha (or its cosine), you can find the location of C.
|
|||||||||||||
|
|
Here is a simple code using two File Exchange submissions: first - to draw circles, second - to find intersections (links below).
|
|||
|
|


