Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような配列を生成する最も速くて簡単な方法は何ですか?
[0, 1, 3, 4, 6, 7, 9, 10, ...]
MATLABで?
1 行ではなく、合計要素数が奇数または偶数の場合に機能し、2 つ以上の異なるステップが必要な場合は拡張できます。
a = zeros(1,8); a(1:2:end) = 0:3:10; a(2:2:end) = 1:3:10;