Very simple logical question
조회 수: 2 (최근 30일)
이전 댓글 표시
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
Patrik Ek
2014년 8월 7일
Ok I do not think char is the only possiblility, that is why I asked. I would recommend this solution by Andrei Bobrov.
채택된 답변
Andrei Bobrov
2014년 8월 7일
편집: Andrei Bobrov
2014년 8월 7일
arrayfun(@(x)sprintf('%04d',x),1:1000,'un',0);
or
reshape(sprintf('%04d',1:1000),4,[])'
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!