Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Only show values below a maximum
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I have a huge matrix with the time and values that I measured, e.g:
matrix =
0 153
1 631
2 512
3 132
4 523
5 1326
Now I only want to give out those values that are <600 (below a defined maximum) and the time belonging to them, so that I would get:
ans =
0 153
2 512
4 523
Is there any MATLAB command solving this problem without using 'while'?
Best regards! Oliver
1 comentario
Jan
el 8 de Sept. de 2011
This is a standard procedure in Matlab. I suggest to read the Getting Started chapters in the documentation.
BTW. how does your WHILE approach look like?
Respuestas (1)
Andrei Bobrov
el 8 de Sept. de 2011
mtx =[ 0 153
1 631
2 512
3 132
4 523
5 1326]
out = mtx(mtx(:,2)<600,:)
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!