random number generator to two different variables
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to initialize two different random numbers to be assigned to different variables. If I put in:
x_1 = rand x_2 = rand
they will get exactly the same number. How do I assign two different random numbers?
Thanksr
0 Commenti
Risposta accettata
Shane
il 25 Nov 2014
They get different random numbers for me. Which version of Matlab are you using?
4 Commenti
Shane
il 25 Nov 2014
You may look into this: http://www.mathworks.com/help/matlab/math/why-do-random-numbers-repeat-after-startup.html
Più risposte (1)
Peter Perkins
il 25 Nov 2014
cgo, it may be that you have created a variable called "rand" in your workspace that is shadowing the rand function. The rand function does not return the same value two times in a row within the same MATLAB session.
0 Commenti
Vedere anche
Categorie
Scopri di più su Random Number Generation 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!