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
Solution Comments
Show comments
Loading...
Problem Recent Solvers56
Suggested Problems
-
Back to basics 21 - Matrix replicating
1826 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
Find out total non zero element of matrix
288 Solvers
-
Create sequnce 1 4 9 16 25.........
419 Solvers
-
126 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!
The test suite has fixed and expanded.