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

4 次查看(过去 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 CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by