Search specific numbers in column

Hello everybody,
I have a Matrix of different measurements and in the 6th column it shows me erorrs. Every value in this column except of 0 shows me that the measurements are wrong. How can I clear out the lines with the errors?
Thanks
Lucas

3 comentarios

Adam
Adam el 27 de Nov. de 2017
What do you mean by errors? An error in Matlab usually refers to a syntax or run-time error on a line of code, you can't have an error within elements of a matrix. Do you mean NaNs?
Lucas MacClellan
Lucas MacClellan el 27 de Nov. de 2017
Hi Adam
Sorry maybe not good explained. The title of the column is "error". It shows me a lot of 0s which are showing me that the measurements of the lines are fine. Sometimes there comes a 1 which is saying to me, that this line is not useful.
Adam
Adam el 27 de Nov. de 2017
Ah, ok, yes, that makes sense. The original explanation is perfectly good enough now, I just got off on the wrong track with my interpretation of 'error'!

Iniciar sesión para comentar.

 Respuesta aceptada

Adam
Adam el 27 de Nov. de 2017
badRowIdx = find( results( :,6 ) == 1 );
results( badRowIdx, : ) = [];
should remove these lines.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 27 de Nov. de 2017

Comentada:

el 27 de Nov. de 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by