Find rows based on set of values/codes
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Millie Johnston
el 13 de Sept. de 2022
Comentada: Star Strider
el 14 de Sept. de 2022
Hello community,
I have a data set that is 48x14 (called data for this example). Each row has a set of codes (possible codes are 0 1 13 14 15 16 31 42 53 54). a row might look like this: [1 0 0 13 0 0 31 0 0 0 42 0 0 53].
The code is part of a for loop but I am strugglig with one specific part: I want to find rows that have a specific series of codes while ignoing the 0 codes. I thought the following code would work to find rows with the codes 1 13 31 42 and 53 in it:
for i = 1:length(data(:,1))
if all(data(i,find(data(i,:) == [1 13 31 42 53])))
.......
.......
I get the following error:
Arrays have incompatible sizes for this operation.
Any help would be much appreciated!
0 comentarios
Respuesta aceptada
Star Strider
el 13 de Sept. de 2022
I am not certain what you want, however the ismember function might be a better option than find for this, especially since everything seems to be integers, so no floating-point approximation problems will be present (requiring ismembertol and likely more coding) —
data = [1 0 0 13 0 0 31 0 0 0 42 0 0 53];
q = ismember(data, [1 13 31 42 53])
v = data(q)
Then determine what you want to do with either ‘q’ (using the nnz function could give the number of matches) or ‘v’ (the content of the matches in the vector) here.
.
4 comentarios
Más respuestas (2)
David Hill
el 13 de Sept. de 2022
for i = 1:size(data,2)
if all(ismember(data(i,:),[0 1 13 31 42 53]))%include 0
2 comentarios
Image Analyst
el 13 de Sept. de 2022
This answer doesn't care about the order of the desired sequence of codes you are looking for or if there are any duplicated numbers in the row.
My answer below requires that the sequence match exactly (not be scrambled or in arbitrary order like [13, 53, 42, 31, 1]).
We're not sure which way you want it, but now you have it both ways so you can choose.
Image Analyst
el 13 de Sept. de 2022
Try this
oneRow = [1 0 0 13 0 0 31 0 0 0 42 0 0 53];
oneRow(oneRow == 0) = [] % Remove zeros
In addition you should be using isequal
% Define the specific sequence you are looking for.
desiredCodeSequence = [1 13 31 42 53]; % Row should be exactly this.
% See if it matches your zero-removed row.
if isequal(oneRow, desiredCodeSequence)
% Matched
fprintf('Matched.\n')
else
% The row is not the desired sequence.
fprintf('The row is not the desired sequence.\n')
end
0 comentarios
Ver también
Categorías
Más información sobre Logical 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!