Info

This question is closed. Reopen it to edit or answer.

Only show values below a maximum

1 view (last 30 days)
Olli
Olli on 8 Sep 2011
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comment
Jan
Jan on 8 Sep 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?

Answers (1)

Andrei Bobrov
Andrei Bobrov on 8 Sep 2011
mtx =[ 0 153
1 631
2 512
3 132
4 523
5 1326]
out = mtx(mtx(:,2)<600,:)

This question is closed.

Community Treasure Hunt

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

Start Hunting!