How to generate data with a specific distribution

7 visualizaciones (últimos 30 días)
Sajjad Taghvaee
Sajjad Taghvaee el 8 de Jul. de 2011
Matlab provides random number generating from a uniform distribution (rand). Is there a way to generate data from other distributions that Matlab supports like Chi-Square??
Sajad
  1 comentario
PRIYANKA upadhyay
PRIYANKA upadhyay el 3 de Jul. de 2013
hello, u have write here that Matlab provides random number generating from a uniform distribution (rand)....can u pls tell exactly how can i generate random nos...

Iniciar sesión para comentar.

Respuestas (2)

Laura Proctor
Laura Proctor el 8 de Jul. de 2011
Use the random function. Here's an example of creating a 10x3 matrix of random numbers using a Chi-Square distribution with 2 degrees of freedom:
y = random('chi2',2,10,3)

Oleg Komarov
Oleg Komarov el 8 de Jul. de 2011
If you have the stats toolbox with random you can chose from a set of distributions.
Otherwise to get a chi-squared just generate standard normals and sum their squares: http://en.wikipedia.org/wiki/Chi-square_distribution

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!

Translated by