how to delete zeros from a matrix
4 views (last 30 days)
Show older comments
hi there,
say i have a matrix: set1 =
1 3
0 0
1 5
0 0
1 8
0 0
1 16
how do i get rid of the zero rows, so it looks like:set1 =
1 3
1 5
1 8
1 16
tnx
SN
0 Comments
Accepted Answer
Image Analyst
on 18 Feb 2013
Try this:
m = [...
1 3
0 0
1 5
0 0
1 8
0 0
1 16]
zeroRows = ~all(m, 2)
m(zeroRows,:) = []
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!