Intersects
Versión 1.0.0 (1,28 KB) por
Mustafa Codur
Fast method for intersects. It finds intersect points between lines using arithmetic geometry formulas
It finds intersect points between lines using arithmetic geometry formulas. to find all intersects run it like following;
here, x1,x2,x3,x4 are defined as;
x1=rand(1,100); y1=rand(1,100); x2=rand(1,100); y2=rand(1,100);
x=[];
y=[];
tic
for i = 1:100
x2a = circshift(x2,i);
y2a = circshift(y2,i);
[xa,ya]=Intersects(x1,y1,x2a,y2a);
x=[x,xa];
y=[y,ya];
end
toc
plot(x1,y1,'g',x2,y2,'b',x,y,'ko'),
Citar como
Mustafa Codur (2025). Intersects (https://la.mathworks.com/matlabcentral/fileexchange/80701-intersects), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2020b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxEtiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
| Versión | Publicado | Notas de la versión | |
|---|---|---|---|
| 1.0.0 |
