Delete entire row of an array

1 view (last 30 days)
Jason
Jason on 13 Jan 2016
Commented: Star Strider on 13 Jan 2016
How can I remove the entire row if either value is less than 5:
Coord =
2 3
2 39
1 88
9 74
10 93
16 28
16 50

Accepted Answer

Stephen23
Stephen23 on 13 Jan 2016
Edited: Stephen23 on 13 Jan 2016
>> Coord = [2,3;2,39;1,88;9,74;10,93;16,28;16,50];
>> Coord(any(Coord<5,2),:) = []
Coord =
9 74
10 93
16 28
16 50

More Answers (1)

Star Strider
Star Strider on 13 Jan 2016
Alternatively:
Coord = Coord(~sum(Coord<5,2),:)
Coord =
9 74
10 93
16 28
16 50

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!