Problem 44058. No more zeros
Given an array with zeros at the beginning or at the end, you should get the output without these zeros:
input = [zeros(5, 1); [1 2 5 1 0 2 5 80]']; output = [1 2 5 1 0 2 5 80]';
or
input = [5 7 6 2 2 0 0 0 0]; output = [5 7 6 2 2];
Solution Stats
Problem Comments
-
1 Comment
goc3
on 3 Feb 2017
The test suite has fixed and expanded.
Solution Comments
Show commentsProblem Recent Solvers54
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52519 Solvers
-
602 Solvers
-
Relative ratio of "1" in binary number
1588 Solvers
-
Create a two dimensional zero matrix
523 Solvers
-
Matlab Basics - Set unwanted parts of a vector to zero
259 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!