Generating random numbers in order?
Mostra commenti meno recenti
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
Più risposte (1)
NIKHIL KUMAR
il 9 Dic 2021
0 voti
x = sort((10-1)*rand(n,1)+1,'ascend' or 'descend');
1 Commento
Walter Roberson
il 9 Dic 2021
This is the same as what Roger suggested in 2013.
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!