How to remove certain elements in a matrix according to the value of elements in an array

1 view (last 30 days)
Hi all,
I want to manipulate a matrix according to the values in the first column. I want to remove rows which their values on the first column is less than 5. Here is an example
Original:
5 6
2 1
4 2
7 9
9 5
New matrix:
5 6
7 9
9 5

Accepted Answer

Voss
Voss on 20 Jun 2022
A = [
5 6
2 1
4 2
7 9
9 5
]
A = 5×2
5 6 2 1 4 2 7 9 9 5
idx = A(:,1) < 5;
A(idx,:) = []
A = 3×2
5 6 7 9 9 5

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!