how to find overlapping intervals?

22 ビュー (過去 30 日間)
Itzik Ben Shabat
Itzik Ben Shabat 2013 年 5 月 14 日
コメント済み: Jan 2014 年 10 月 26 日
Hi, is there a function or an efficient way to find the overlap between two intervals represented in vectors. for example for a=[0 90 180 270]; and b=[26,180,270]; it should find the following overlaps and return the indices
26,90 (2,1) 90,180 (2,2) 180,270 (3,3) or (4,2) and the edges as well (as though the intervals are cyclic) 270,0 (1,4) 0,26 (1,1)
thanks
  1 件のコメント
Jan
Jan 2013 年 5 月 14 日
編集済み: Jan 2013 年 5 月 14 日
I'm not sure, what "26,90 (2,1) 90,180 (2,2)..." should mean. Of course this notation is clear to you, but an exact definition for the forum would be a good idea also.

サインインしてコメントする。

回答 (4 件)

Cedric
Cedric 2013 年 5 月 14 日
編集済み: Cedric 2013 年 5 月 14 日
If boundaries are integer, a solution can built based on CUMSUM for building interval IDs and DIFF or UNIQUE for finding boundaries and IDs. I can develop this further if you are interested.
However, if all you have to do is to generate the list of intervals, without really caring for interval IDs, why couldn't you just go for something simpler, like:
>> bnd = unique([a, b]) ;
>> if bnd(end) < 360, bnd = [bnd, bnd(1)] ; end
>> int = [bnd(1:end-1); bnd(2:end)]
int =
0 26 90 180 270
26 90 180 270 0

Thomas
Thomas 2013 年 5 月 14 日
Your question is a little ambiguous but her is something you can use
doc intersect
To see where the arrays overlap
[C,ia,ib]=intersect(a,b)
Ans
C =
180.00 270.00
ia =
3.00 4.00
ib =
2.00 3.00
  1 件のコメント
Itzik Ben Shabat
Itzik Ben Shabat 2013 年 5 月 14 日
i found this function too. but it doesnt doo what i mean. it finds equal parameters and not intervals. ill try to be more clear. imagine a straight line. this line begins at the first value of vector a. (in my example 0). the next point on tha line is defined by the second value in a (in my example 90) and so on... now imagine a second straight line right under the first one. this line is defined by the values in b. now if we draw vertical lines in each point of the lines we get areas whih overlap. the overlap is defined by a right and left vertical lines, each belongning to a different vector. was that more clear?

サインインしてコメントする。


Jan
Jan 2013 年 5 月 14 日
What about histc()?
  1 件のコメント
Itzik Ben Shabat
Itzik Ben Shabat 2013 年 5 月 14 日
interesting. didnt know this one. ill look at it closely. but its near the solution im looking for. not quite there yet...

サインインしてコメントする。


Amani
Amani 2014 年 10 月 26 日
have you found a solution for this problem? histc does not solve it
  1 件のコメント
Jan
Jan 2014 年 10 月 26 日
Please open a new thread and define your problem there exactly.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by