Code covered by the BSD License  

Highlights from
Curve Intersect 2

5.0

5.0 | 17 ratings Rate this file 116 Downloads (last 30 days) File Size: 10.98 KB File ID: #8908
image thumbnail

Curve Intersect 2

by Sebastian Hölz

 

02 Nov 2005 (Updated 16 Feb 2007)

Finds the intersection points between two arbitrary polygons.

| Watch this File

File Information
Description

General

This file is based on the Curve Intersect function by Duane Hanselman. It extends the scope of the function to handle arbitrary lines / polygons, which may also have vertical segments or segments with non-increasing x-values.

Description
Calculate the intersection points of two 2D-lines / polygons.

Usage
[X,Y]=CURVEINTERSECT(H1,H2) or [X,Y]=CURVEINTERSECT([H1 H2]) or
[X,Y]=CURVEINTERSECT(X1,Y1,X2,Y2) or
 -> (H1,H2) handles to line objects
 -> (Xi,Yi) coordinates of lines
 -> (X,Y) coordinates of intersection

Example
x1=rand(10,1); y1=rand(10,1); x2=rand(10,1); y2=rand(10,1);
[x,y]=curveintersect(x1,y1,x2,y2);
plot(x1,y1,'k',x2,y2,'b',x,y,'ro')

Acknowledgements
This submission has inspired the following:
Minimum distance between two polygons, Fast and Robust Curve Intersections
MATLAB release MATLAB 7.0.1 (R14SP1)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (22)
08 Feb 2006 gok gok

great command, thank you!
Are you planning to include the case of infinite line intersection?
Example:
x1=[0 1]; y1=[0 0];x2=[0.5 0.5]; y2=[0.1 1];
will "intersect" at [0.5,0]

17 Jan 2007 xiaoxu wang  
11 May 2007 Peter Krug

Works well for me

11 Jul 2007 Mat Cop

very useful

13 Jul 2007 leila k  
25 Jul 2007 Huy Pham

Could we use it for a higher dimension?

30 Jul 2007 Dick Benson

Overcomes limitations of the D. Hanselman version. THANKS!

30 Jan 2008 David Shepherd

I'm using this to quickly find the point at which two EXIT functions intersect, its perfect thanks mate.

30 Jun 2008 Sathish Athreya

Yes, Obviously it is very fast to find intersection point between curves

19 Oct 2008 C. Chaya Boughan

Wonderful program. Worked for some very sticky intensity plots where the points of intersection had been hard to find. Vielen dank Sebastian !!!!

17 Nov 2008 Carlos Guerrero Mosquera  
17 Nov 2008 Carlos Guerrero Mosquera

Excellent job!! Thanks!

06 Mar 2009 Damir

It is an excelent job, however I found a bug. The function finds wrong intersection, if one of the curves is almost vertical. Please try this:
x1=[0.1 0.1+1e-17]
y1=[-1 1]
x2=[-1 1]
y2=[-1 1]
[x,y]=curveintersect(x1,y1,x2,y2)
plot(x1,y1,'k',x2,y2,'b:',x,y,'ro')

24 Aug 2009 Nitin Kumar

Great job !!

15 Oct 2009 Yan

works great! thanks

21 Jan 2010 Tyler Jandreau  
02 Jul 2010 Andreas Lobinger

One of our students came up with the usage of curveintersect and afaics it works correctly. However the profiler tells me now, that from 300s program runtime 120s are spend in curveintersect and most of the time in the calls to interp1 in curveintersect_l.

Are they really neccessary?

15 Feb 2011 Martin Fuchs

Extremly good code ! Thx sharing it !!!

17 Mar 2011 Zak

Worked great for me, though my application was quite simple.

03 May 2011 minoo  
26 May 2011 Weylan Yutani

Forgot to say thanks and congrats!

06 Sep 2011 KYAW KYAW

Dear Sir/Madam,

I am looking for the intersection of dynamic waves and base line. SO far, I could manage to get few of the intersection points using ratio (Y data of dynamic wave/ Y data of base line) for whole of samples. Pls advise me how should I continue since I was stuck in here so long.

I used your function but mine is dynamic wave form and base straing line so the X -axis is not constant line. So the array is only (1900x1) for wave form and base line. The Y values of wave form is changing but the base line is seems like constant. Let say, there is 64 intersection points visuality but what i can get is only 47 but some are not accutare positions.

Thanks and best regards
Kyaw

Please login to add a comment or rating.
Updates

Fixed small bug reported by Vadim Moldavsky

16 Feb 2007

Fixed small bug reported by Vadim Moldavsky

Tag Activity for this File
Tag Applied By Date/Time
intersection Cristina McIntire 10 Dec 2008 16:49:01
line Cristina McIntire 10 Dec 2008 16:49:01
polygon Cristina McIntire 10 Dec 2008 16:49:01
curve Cristina McIntire 10 Dec 2008 16:49:01
intersection Peter Chang 11 Dec 2008 12:22:16
polygon Ashok Prajapati 06 Feb 2009 19:22:21
curve faisal 18 Jun 2010 13:59:12
curve Ankur Gupta 02 Jul 2010 19:16:18
intersection Sergey 01 Jun 2011 04:33:11
curve Chia-Hui 10 Oct 2011 10:56:07

Contact us at files@mathworks.com