how to create a list of random number with a minimum difference between each number?
    15 views (last 30 days)
  
       Show older comments
    
Hi, 
I am trying to create a list of 'n' random numbers within a range(1,m) and the difference between adjacent numbers need to be at least 'd'. 
The list needs to be sorted and no repetion allowed. 
I can do the same in python using
% r = m - ((m - 1) * (n - 1))
%   = 30 - ((3-1) * (6-1)) = 30 - 2*5 = 20
%[(d-1)*i + x for i, x in enumerate(sorted(random.sample(range(r), n)))]
print([2*i + x for i, x in enumerate(sorted(random.sample(range(20), 6)))])
>>[2, 5, 14, 20, 24, 28]
In the above code, I am trying to generate a sorted list of 6 random numbers from 0-30, with a minimum difference between each adjacent element of at least 3. 
Can some one plese suggest me how can I do something similar in matlab?
11 Comments
  Torsten
      
      
 on 2 Aug 2022
				So [2 14 4 28 20 4] (not ordered, repetitions allowed) (d=3, n=6 and m = 30) would be acceptable in your test case ?
Answers (1)
  David Hill
      
      
 on 2 Aug 2022
        
      Edited: David Hill
      
      
 on 2 Aug 2022
  
      You can brute force it.
m=200;%randomn numbers between 1-200
n=50;%array length
d=20;%minimum distance
a=randi(m,100000,n);%make sifficiently large
D=abs(diff(a,[],2));
idx=D>=d;
f=find(sum(idx,2)==n-1);
randNums=a(f,:);%rows of array having randomn numbers with adjacent elements being at least d apart
4 Comments
  David Hill
      
      
 on 2 Aug 2022
				Below works but the randomn numbers will be skewed towards the high-side of the interval.
m=2000;
n=10;
d=5;
r=1:m;
R=[];
while 1
 for k=1:n
   if length(r)+k<n||isempty(r)
       r=1:m;
       R=[];
       break;
   end
   p=randperm(length(r),1);
   R=[R,r(p)];
   r=r(r>(r(p)+d));
 end
 if ~isempty(R)
     break;
 end
end
See Also
Categories
				Find more on Creating and Concatenating Matrices 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!

