Write a function that will add leading-zero padding to all numbers in the supplied vector, as necessary, based on the maximum number length. For example, for x = 1:10, return:
y = {'01';'02';'03';'04';'05';'06';'07';'08';'09';'10'}
See the test suite for additional examples.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers30
Suggested Problems
-
Select every other element of a vector
36328 Solvers
-
Project Euler: Problem 5, Smallest multiple
1651 Solvers
-
Matrix of almost all zeros, except for main diagonal
191 Solvers
-
If you have matrix A, create matrix B using matrix A as an "element"
129 Solvers
-
determine the sum of the squares
128 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem has been improved and the test suite expanded.