Find index where condition is true, or end of matrix
42 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bob Thompson
el 5 de Mayo de 2021
Respondida: Bob Thompson
el 5 de Mayo de 2021
I have an array that represents the time based states of an analysis. I want to search the array for where a certain state starts, and if the state doesn't exist, then pick the final index of the array.
statestart = find(Results.state==5,1); % Find index of first time state is 5
if isempty(statestart)
statestart = numel(Results.state);
end
I know this works, but I would like to know if it's possible to get the same result without an if statement.
1 comentario
Mario Malic
el 5 de Mayo de 2021
Editada: Mario Malic
el 5 de Mayo de 2021
Maybe you could create a vector that contains states that are within Results.state using unique, that way you could skip on checking for non-existant states.
Respuesta aceptada
Más respuestas (1)
Jonas
el 5 de Mayo de 2021
you could set the last entry to the condition you are searching for and then use your find function. this way at least one index can be found where the condition is met
1 comentario
Paul Hoffrichter
el 5 de Mayo de 2021
But how does the program know that this added last entry is phony data? An if-statement still appears to be required.
Ver también
Categorías
Más información sobre Matrix Indexing 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!