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

1 vue (au cours des 30 derniers jours)
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.

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 4 Oct 2021
Modifié(e) : Fangjun Jiang le 4 Oct 2021
a=zeros(1000,25);
a(:)=randperm(1000000, numel(a));

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by