What is the difference between mvnrnd and normrnd?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mr M.
el 13 de Mayo de 2015
Respondida: Adnane123
el 18 de Sept. de 2015
I can not find out what is the difference between these two random number generator functions.
2 comentarios
Rohit Jain
el 15 de Mayo de 2015
mvnrnd() is the function used to generate pseudo random numbers that follow multi variate normal distribution. mvnrnd() is more for creating correlated random variables normrnd() is the function used to generate pseudo random numbers that follow normal distribution. normrnd() is generally faster than mvnrnd(). For more information on mvnrnd() and normrnd() follow the documentation http://www.mathworks.com/help/stats/mvnrnd.html
Adnane123
el 16 de Sept. de 2015
Editada: Adnane123
el 16 de Sept. de 2015
Another difference to emphasize here is that if you want to use mvnrnd() for the univariate case you should use the variance directly. For normrnd(), you need to use the standard deviation. Thus, the input for each function should look like: mvnrnd(mean,var) Vs normrnd(mean,sd)
Respuesta aceptada
Rohit Jain
el 15 de Mayo de 2015
mvnrnd() is the function used to generate pseudo random numbers that follow multi variate normal distribution. mvnrnd() is more for creating correlated random variables normrnd() is the function used to generate pseudo random numbers that follow normal distribution. normrnd() is generally faster than mvnrnd(). For more information on mvnrnd() and normrnd() follow the documentation http://www.mathworks.com/help/stats/mvnrnd.html
0 comentarios
Más respuestas (1)
Adnane123
el 18 de Sept. de 2015
Another difference to emphasize here is that if you want to use mvnrnd() for the univariate case you should use the variance directly. For normrnd(), you need to use the standard deviation. Thus, the input for each function should look like: mvnrnd(mean,var) Vs normrnd(mean,sd)
0 comentarios
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!