フィルターのクリア

Find maximum number of consecutive negative values

2 ビュー (過去 30 日間)
dave
dave 2013 年 8 月 20 日
コメント済み: DARSHAN N KANNUR 2021 年 3 月 24 日
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?
  1 件のコメント
dave
dave 2013 年 8 月 21 日
Thanks everybody for your great suggestions - I wish I could accept more than one answer...

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

採用された回答

Andrei Bobrov
Andrei Bobrov 2013 年 8 月 21 日
A = randi([-6,3],20,15); % Let it your array
t = A < 0;
s = size(t);
tt = cumsum(diff([false(1,s(2));t]) == 1);
[jj,jj] = ndgrid(zeros(1,s(1)),1:s(2));
out = max(accumarray([tt(t),jj(t)],ones(nnz(t),1)));
  1 件のコメント
DARSHAN N KANNUR
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

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

その他の回答 (2 件)

Iain
Iain 2013 年 8 月 20 日
logi = x < 0;
[bw n] = bwlabel(logi);
A = regionprops(bw,'Area');
Answer = max([A(:).Area]);
  2 件のコメント
Image Analyst
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
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
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
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

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

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by