Given a matrix that includes different nonzero and zero entries, extract the nonzero elements and form a new matrix. The new matrix should maintain the same number of columns.
For example, for the input:
a = [0 1 0; 1 0 2; 4 3 -5]
the output should be:
[1 1 2; 4 3 -5]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers46
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1648 Solvers
-
Back to basics 21 - Matrix replicating
1788 Solvers
-
Reverse the elements of an array
1109 Solvers
-
Convert given decimal number to binary number.
2272 Solvers
-
Sum of the Multiplication of Vectors
285 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The problem description has been updated.