フィルターのクリア

Which line is the first line that has an intersection with another line? or what is the order of the intersectection points?

1 回表示 (過去 30 日間)
Hello,
I have a problem in my code and I have simplified it as below:
x=[12;25;7];
y=[6;31;15];
xd=[5;40;NaN;2;11];
yd=[13;16;NaN;8;9];
I have the above points I want to calculate the intersection, between line 1 and line 2,3. I used polyxpoly.
Here is my question, how can I undesrtand which line is the first iinterseted line while moving from point (x,y)1 to (x,y)2. Is it line 2 or line 3?
Thanks a lot

採用された回答

darova
darova 2019 年 10 月 4 日
Use third output argument of polyxpoly
[xc,yc,ix] = polyxpoly(x,y,xd,yd)
% ix(:,1) - number of intersected segment in [x,y] data
% ix(:,2) - number of intersected segment in [xd,yd] data

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLive Scripts and Functions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by