Find if a value greater than a threshold occurs 10 or more times in every consecutive 20 days.
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    SMA
 el 9 de Nov. de 2015
  
    
    
    
    
    Comentada: Image Analyst
      
      
 el 20 de Abr. de 2023
            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!
3 comentarios
Respuesta aceptada
  Image Analyst
      
      
 el 21 de Nov. de 2015
        
      Editada: Image Analyst
      
      
 el 21 de Nov. de 2015
  
      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 comentarios
  Image Analyst
      
      
 el 21 de Nov. de 2015
				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;
Más respuestas (1)
  Bala
 el 20 de Abr. de 2023
        i need find same value repeated more than three times place in column in matlab code
1 comentario
  Image Analyst
      
      
 el 20 de Abr. de 2023
				@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:

Ver también
Categorías
				Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




