Generating random numbers in order?

25 visualizzazioni (ultimi 30 giorni)
Joe
Joe il 7 Apr 2013
How would you generate random numbers so that they are in ascending or descending order? Is there a way to create a function similar to linspace in that it generates linearly spaced values in a certain interval but with random numbers each time you execute the function?

Risposta accettata

Roger Stafford
Roger Stafford il 7 Apr 2013
If a and b are the lower and upper limits you have in mind for the numbers, do this:
x = sort((b-a)*rand(n,1)+a,'ascend' or 'descend');

Più risposte (1)

NIKHIL KUMAR
NIKHIL KUMAR il 9 Dic 2021
x = sort((10-1)*rand(n,1)+1,'ascend' or 'descend');

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by