Delete the column with all 0 data in a matrix(x).
e.g.
input x =
1 0 0 4
5 0 7 0
9 0 11 0output y =
1 0 4
5 7 0
9 11 0
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers63
Suggested Problems
-
6098 Solvers
-
3490 Solvers
-
Return elements unique to either input
813 Solvers
-
Generate a random matrix A of (1,-1)
430 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 Solvers
More from this Author7
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Should include some test cases with negative numbers in the Test Suite. For example, several submissions would fail for x = [1, −1; −1, 1].