How can I define a 1x3 array with "unifrnd" while second element must always be greater than first one?
    5 views (last 30 days)
  
       Show older comments
    
    mohamad hoseini
 on 5 Nov 2017
  
    
    
    
    
    Answered: Kaushik Lakshminarasimhan
      
 on 5 Nov 2017
            I wanna use "unifrnd" command to produce a 1x3 array but conditionally I need the second element of the array to be always greater than the first element. Considering the example below: >> min=0; max=10; A=unifrnd(min,max,1,3)
A = 6.3 6.0 0.4
Now, How can I make it to select the second element always greater than first one.
Thanks,
0 Comments
Accepted Answer
  Kaushik Lakshminarasimhan
      
 on 5 Nov 2017
        minvals = min(A(:,1:2),[],2);
maxvals = max(A(:,1:2),[],2);
A(:,1) = minvals;
A(:,2) = maxvals;
0 Comments
More Answers (0)
See Also
Categories
				Find more on C Shared Library Integration 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!
