Writing an number array in specific format

Hi,
How can I write a number array like this below in MATLAB?
aa= 1 2 3 5 6 7 9 10 11 13 14 15...upto 10000
Thanks in advance.

 採用された回答

James Tursa
James Tursa 2016 年 3 月 12 日

0 投票

aa = 1:10000;
aa(4:4:end) = [];

その他の回答 (0 件)

質問済み:

2016 年 3 月 12 日

コメント済み:

2016 年 3 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by