Problem 44247. Delete the column with all 0 !
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 0
output y =
1 0 4 5 7 0 9 11 0
Solution Stats
Problem Comments
-
1 Comment
David Verrelli
on 22 Jun 2018
Should include some test cases with negative numbers in the Test Suite. For example, several submissions would fail for x = [1, −1; −1, 1].
Solution Comments
Show commentsProblem Recent Solvers59
Suggested Problems
-
Select every other element of a vector
33001 Solvers
-
Sum all integers from 1 to 2^n
15330 Solvers
-
Back to basics - mean of corner elements of a matrix
416 Solvers
-
Delete 2nd and 5th column of Given 6*6 matrix
165 Solvers
-
463 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!