find intersection of graph

I have this graph like this
plot ([0,1,1,0,0,1,0.5,0],[0,1,0,1,0,0,1.5,0],'-')
how can I find all intersections in this graph?

 Accepted Answer

madhan ravi
madhan ravi on 11 Dec 2018

4 Comments

NA
NA on 12 Dec 2018
It is not giving me any intersection
upload the code that you tried
NA
NA on 12 Dec 2018
Edited: madhan ravi on 12 Dec 2018
x1=[0,1,1,0,0,1,0.5,0]
y1=[0,1,0,1,0,0,1.5,0]
P = InterX(x1,y1);
plot(x1,y1,P,'ro')
x1=[0,1,1,0,0,1,0.5,0]
y1=[0,1,0,1,0,0,1.5,0]
P = InterX([x1;y1]); % P is the intersection of curves
plot(x1,y1,P(1,:),P(2,:),'ro')
Screen Shot 2018-12-12 at 8.49.28 AM.png

Sign in to comment.

More Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Asked:

NA
on 11 Dec 2018

Edited:

on 12 Dec 2018

Community Treasure Hunt

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

Start Hunting!