how to fix a sequence generated using randperm
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Foram Sanghavi
le 2 Juin 2018
Commenté : Foram Sanghavi
le 2 Juin 2018
I am trying to generate a sequence of numbers using randperm, is there a way I can fix the sequence generated like for example we can use rng for randi.
0 commentaires
Réponse acceptée
Walter Roberson
le 2 Juin 2018
randperm() uses rand() internally, so rng() will work.
3 commentaires
Walter Roberson
le 2 Juin 2018
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
>> rng(55)
>> randperm(18,5)
ans =
14 1 4 15 7
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!