Effacer les filtres
Effacer les filtres

how to assign randomly generated numbers to a matrix say 10 by 2?

2 vues (au cours des 30 derniers jours)
chan
chan le 29 Sep 2015
Commenté : chan le 29 Sep 2015
i have created random numbers using the code k1=randi([1,1000],1,10) Now how to assign this 10 randomly generated numbers to a matrix 10 by 2 with repetition allowed.

Réponse acceptée

Walter Roberson
Walter Roberson le 29 Sep 2015
Modifié(e) : Walter Roberson le 29 Sep 2015
X = randi([1,1000],10, 1);
while true
M = [X, X(randperm(length(X)))];
if all(diff(M,2)~=0); break; end
end
The while loop removes the possibility that a number is matched with itself.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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