Very simple logical question

Hello all
I want to generate the set of numbers such that each number is having the same number of digits.
Something like this: 0001,0002,0003,.....0010,0011,0012,.....0100,0101,0102.....,0998,0999,1000
can anyone please help me with this?
Regards

3 comentarios

Patrik Ek
Patrik Ek el 7 de Ag. de 2014
Do they have to be of any numerical type, or is it ok to have them as a char vector?
Sameer
Sameer el 7 de Ag. de 2014
Hi....either double or char
Patrik Ek
Patrik Ek el 7 de Ag. de 2014
Ok I do not think char is the only possiblility, that is why I asked. I would recommend this solution by Andrei Bobrov.

Iniciar sesión para comentar.

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 7 de Ag. de 2014
Editada: Andrei Bobrov el 7 de Ag. de 2014

1 voto

arrayfun(@(x)sprintf('%04d',x),1:1000,'un',0);
or
reshape(sprintf('%04d',1:1000),4,[])'

Más respuestas (1)

Ben11
Ben11 el 7 de Ag. de 2014

1 voto

A = cell(1,1000);
for k = 1:1000
A{k} = sprintf('%04d',k);
end

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 7 de Ag. de 2014

Comentada:

el 7 de Ag. de 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by