I would like to remove zeros from my matrix
    4 views (last 30 days)
  
       Show older comments
    
a=[0 0 0; 0 0 0; 1 2 3; 4 5 6]
3 Comments
  Rik
      
      
 on 27 Oct 2021
				@Aladdin, this is an answer to what might be a homework question. Please consider either moving your comment to the answer section (by deleting this and reposting it) or deleting your comment.
Answers (1)
  Walter Roberson
      
      
 on 27 Oct 2021
        a = [0 0 0; 0 0 0; 1 2 3; 4 5 6]
b = rmmissing(standardizeMissing(a, 0))
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


