フィルターのクリア

Very simple logical question

1 回表示 (過去 30 日間)
Sameer
Sameer 2014 年 8 月 7 日
コメント済み: Patrik Ek 2014 年 8 月 7 日
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 件のコメント
Sameer
Sameer 2014 年 8 月 7 日
Hi....either double or char
Patrik Ek
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
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,[])'

その他の回答 (1 件)

Ben11
Ben11 2014 年 8 月 7 日
A = cell(1,1000);
for k = 1:1000
A{k} = sprintf('%04d',k);
end

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by