Fast and Robust Curve Intersections

版本 2.0.0.0 (11.5 KB) 作者: Douglas Schwarz
Computes intersection points of two curves.
42.9K 次下载
更新时间 2017/5/26

查看许可证

编者注: This file was selected as MATLAB Central Pick of the Week

This function computes the (x,y) locations where two curves intersect. The curves can be broken with NaNs or have vertical segments. It is also very fast (at least on data that represents what I think is a typical application).

引用格式

Douglas Schwarz (2024). Fast and Robust Curve Intersections (https://www.mathworks.com/matlabcentral/fileexchange/11837-fast-and-robust-curve-intersections), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Fit Postprocessing 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
2.0.0.0

This version uses implicit expansion (or bsxfun in slightly older MATLAB versions) to compute the line segments that might overlap. When the number of line segments is large, it uses a different algorithm to avoid forming large matrices.

1.2.0.0

Fixed bug that my previous "bug fix" failed to fix.

1.1.0.0

Fixed bug identified by Rodrigo Portugal. No longer fails when there are no intersections and you need 4 outputs.

1.0.0.0

Added ability to find self-intersections of one curve.