generate pair numbers randomly
显示 更早的评论
I want to pair two numbers randomly in each pair as [ 5 8] [ 11 4] [3 17] .....
1 个评论
Image Analyst
2022-7-11
Are repeats, either in the same row or in different rows, allowed? Or do all numbers need to be different? Must the numbers be integers, or can they be floating point/fractional?
回答(2 个)
Hrusheekesh
2022-7-11
hi ananya,
it is my understanding that you want to create a array of pairs with random vaues. but is there any constraints like the range or max value.
anyways if there is a value try this
a=20;
idx=reshape(randperm(a,[],2);
Say you want to pair numbers randomly between 1 to 20.
n = 10 ;
iwant = zeros(n,2) ;
for i = 1:n
iwant(i,:) = randperm(20,2) ;
end
iwant
类别
在 帮助中心 和 File Exchange 中查找有关 Entering Commands 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!