Improve performance, use logical indexing instead of FIND?!!

16 visualizaciones (últimos 30 días)
Mohammed
Mohammed el 22 de Sept. de 2014
Respondida: Image Analyst el 22 de Sept. de 2014
I was trying to improve my code but there is a message for the following code that I do not comprehend it. Any Solutions/idea/explanation?!
indices = find(NSet(:,4)~=0);
NSet = NSet(indices,[2:3, 5:clmNSet]);
Message: "To Improve performance, use logical indexing instead of FIND"
Thanks.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Sept. de 2014
You don't need find. Use logical indexes:
logicalIndices = NSet(:,4)~=0;
NSet = NSet(logicalIndices,[2:3, 5:clmNSet]);

Más respuestas (0)

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!

Translated by