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

145 Solutions

55 Solvers

Last Solution submitted on Feb 24, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers55

Suggested Problems

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!