Finding maxima in blocks of data, consecutively
조회 수: 2 (최근 30일)
이전 댓글 표시
Problem Statement: I have a time series, x. I am interested in consecutive, temporal blocks of x where x > value. I also want to focus on blocks that are at least time "T" apart. Let x(*) indicate x at time index *. If:
x(m-K), x(m-K+1), x(m-K+2), ...x(m) > value
and, later at n > m + T (a greater time)
x(n-K), x(n-K+1), x(n-K+2), ...x(n) > value
I want to identify the maximal value within each block, while ignoring all temporally consecutive blocks that are less than T samples apart. I currently have a for loops-method that works, but it's clumsy and not great for the application I have in mind.
Application: I am trying to detect certain events, where x exceeds a detection statistic, but I only want events spaced "T" distance apart. Events closer than "T" are considered to be the same.
HELP? Thanks.
댓글 수: 0
채택된 답변
Image Analyst
2013년 5월 16일
Can't you just say
maxValue = max(x(n-K:n));
or similar for m? If you have the Image Processing Toolbox, you can use imdilate(), which is a sliding local maximum. If you want to get the max only of x with values greater than value, then
thresholdedX = x(x>value);
but then I'm not sure if the (n-K) and n apply to the indexes before or after thresholding and extraction of the values above the threshold value, so I can't give the next step for certain.
댓글 수: 5
Image Analyst
2013년 5월 16일
Do you have the Image Processing Toolbox? If so you can do this easily. Just threshold and mask and pass to imdilate, then mask again. It's like 4 lines of code.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!