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

1 view (last 30 days)
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.

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 4 Oct 2021
Edited: Fangjun Jiang on 4 Oct 2021
a=zeros(1000,25);
a(:)=randperm(1000000, numel(a));

More Answers (0)

Categories

Find more on Random Number Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!