How to find point of intersection ?

조회 수: 4 (최근 30일)
thineesh Vijayakumar
thineesh Vijayakumar 2019년 4월 12일
댓글: Star Strider 2019년 4월 12일
I have 4 coordinate and need to find the point of intersection. Can someone share the coding to find the intersection point and to display the point in graph below. Thank You.mat.JPG

채택된 답변

Star Strider
Star Strider 2019년 4월 12일
Try this:
blue = [1 5; 1 5]; % [x1 x2; y1 y2]
red = [1 5; 3 2]; % [x1 x2; y1 y2]
Bb = [blue(1,:)' ones(2,1)] \ blue(2,:)'
Br = [red(1,:)' ones(2,1)] \ red(2,:)'
xint = (Br(2) - Bb(2)) / (Bb(1) - Br(1))
yint = [xint 1] * Bb
figure
plot(blue(1,:)', blue(2,:)', '-b')
hold on
plot(red(1,:), red(2,:), '-r')
plot(xint, yint, 'pg', 'MarkerSize',10)
hold off
producing:
xint =
2.6000
yint =
2.6000
  댓글 수: 3
thineesh Vijayakumar
thineesh Vijayakumar 2019년 4월 12일
편집: thineesh Vijayakumar 2019년 4월 12일
plot(blue(1,:)', blue(2,:)', '-b')
hold on
plot(red(1,:), red(2,:), '-r')
plot(xint, yint, 'pg', 'MarkerSize',10)
hold off
what mean 'pg' ? thank you
Star Strider
Star Strider 2019년 4월 12일
As always, my pleasure!
The 'pg' in the plot call denotes a green five-pointed star (‘pentagram’) marker. See the documentation section on Marker (link) for details.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

darova
darova 2019년 4월 12일
mat.jpeg

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by