Find if a value greater than a threshold occurs 10 or more times in every consecutive 20 days.
10 次查看(过去 30 天)
显示 更早的评论
I am having trouble writing a code for a condition that within every 20 consecutive days, find if a value greater than a defined threshold occurs at least 10 times. For example, I have a matrix called test_matrix (57x365; where each row represents a year and each column is a day). So for each of the 57 years, I want to find the values greater than a threshold (say value >5), and check whether they occur 10 or more times in every consecutive 20 days.
If the criteria is met, I'd like to know all the first days of the 20 day window (i.e., it may occur 3 times in a year, so I'd like to know those three days).
A bit hard to explain, so I am happy to clarify the question. Thanks!
采纳的回答
Image Analyst
2015-11-21
编辑:Image Analyst
2015-11-21
First of all you need to convert the matrix into one long 1-D vector so you can find stretches than span New Year's Day. Then you simply use conv():
allDays = reshape(test_matrix', [1, numel(test_matrix)]);
% Find days more than a threshold of 5:
aboveThreshold = allDays >= 5;
% Make a moving window of 20 days to count the number of days above 5.
windowWidth = 20;
counts = conv(aboveThreshold, ones(1, windowWidth), 'same');
tenOrMore = counts >= 10;
Note that there there will be an offset so you have to see what it is. The counts is basically the counts when the window is centered at the location, but since you're not taking an odd number of elements in the window as is normal, there will be a half element shift and you'll need to figure that out.
3 个评论
Image Analyst
2015-11-21
Of course. If you don't want to count stretches that span across New Year's Day then just leave it as a 2D array and use conv2():
% Find days more than a threshold of 5:
aboveThreshold = test_matrix>= 5;
% Make a moving window of 20 days to count the number of days above 5.
windowWidth = 20;
counts = conv2(aboveThreshold, ones(1, windowWidth), 'same');
tenOrMore = counts >= 10;
更多回答(1 个)
Bala
2023-4-20
i need find same value repeated more than three times place in column in matlab code
1 个评论
Image Analyst
2023-4-20
@Bala Did you try a simple for loop?
v = [1,2,3,3,3,3,4,5,5,5,6,6,6,6,6,6];
startingIndexes = nan(1, numel(v));
for k = 3 : length(v)
% See if the prior element, and the one before that match the current element.
if (v(k) == v(k-1)) && (v(k) == v(k-2))
% There are 3 adjacent elements that have the same value.
% Record the location of the starting index.
startingIndexes(k-2) = k-2;
end
end
startingIndexes
% Or
startingIndexes = startingIndexes(~isnan(startingIndexes))
To learn other fundamental concepts, invest 2 hours of your time here:
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!