rand command give different answer
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
why this rand command give different result
1 commentaire
Stephen23
le 9 Fév 2020
"why this rand command give different result"
What do you expect its output to be?
Réponses (2)
James Tursa
le 9 Fév 2020
Modifié(e) : James Tursa
le 9 Fév 2020
rand( ) is a random number generator ... it is supposed to give a different result.
doc rand
If you want to start over with the same stream of numbers you will need to re-seed it.
1 commentaire
Chuguang Pan
le 9 Fév 2020
All the random number functions, rand, randn, randi, and randperm, draw values from a shared random number generator. Every time you start MATLAB, the generator resets itself to the same state.
The rand function draw values from a RandStream.
0 commentaires
Voir également
Catégories
En savoir plus sur Random Number Generation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!