Find maximum number of consecutive negative values
이전 댓글 표시
Hi,
I have a mxn matrix and I need to find the maximum number of consecutive negative values for each column.
So the output would be a 1xn vector, where the i-th element is the maximum number of consecutive negative values for column "i".
How would I do this without a loop?
채택된 답변
추가 답변 (2개)
Iain
2013년 8월 20일
logi = x < 0;
[bw n] = bwlabel(logi);
A = regionprops(bw,'Area');
Answer = max([A(:).Area]);
댓글 수: 2
Image Analyst
2013년 8월 20일
regionprops() is in the Image Processing Toolbox. With later versions, it can do the labeling automatically internally:
x = array2D(:, columnNumber); % Extract just this column
negativeValues = x < 0; % Logical array
structureA = regionprops(negativeValues,'Area');
Answer = max([structureA.Area]);
Repeat for every column in your array.
DARSHAN N KANNUR
2021년 3월 24일
What to do, if I want to know the starting index of the maximum consecutive negative elements. Thank you in advance
Roger Stafford
2013년 8월 20일
If you want the code completely vectorized, let x be your matrix and do this:
[m,n] = size(x);
p = double([0;reshape([x;zeros(1,n)],[],1)]<0);
f = find(diff(p)~=0);
f2 = f(2:2:end);
p(f2+1) = f(1:2:end-1)-f2;
p = cumsum(p);
p = reshape(p(2:end),[],n);
mx = max(p); % mx is the required 1 x n row vector of column maxima
However, I suspect that a single for-loop, properly done, would be faster.
댓글 수: 1
DARSHAN N KANNUR
2021년 3월 24일
What to do, if I want to know the starting index of the maximum consecutive negative elements. Thank you in advance
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!