How do I fill a 1000*25 length vector with random, non-repetitive numbers from 1 to 1000000?

1 回表示 (過去 30 日間)
I tried numerous ways of doing the above but I keep getting compatibility issues since randperm(1000000) returns a vector of length 1000000 and my created vector is just 1000*25.

採用された回答

Fangjun Jiang
Fangjun Jiang 2021 年 10 月 4 日
編集済み: Fangjun Jiang 2021 年 10 月 4 日
a=zeros(1000,25);
a(:)=randperm(1000000, numel(a));

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by