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 Solvers55
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2814 Solvers
-
1228 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Reverse the elements of an array
1113 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
600 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.