Borrar filtros
Borrar filtros

How can I create a random array from a distribution?

2 visualizaciones (últimos 30 días)
Gabs
Gabs el 23 de Oct. de 2015
Comentada: the cyclist el 23 de Oct. de 2015
I was wondering how can I create an array of certain dimensions (i.e. 1000x1) from a distribution object?

Respuesta aceptada

the cyclist
the cyclist el 23 de Oct. de 2015
N = 1000;
pd = makedist('Normal','mu',75,'sigma',10);
r = pd.random(N,1);
  4 comentarios
Gabs
Gabs el 23 de Oct. de 2015
Actually, I am having trouble. I want a random set of numbers from a normal distribution object with a given mu and sigma. However, I need to truncate the distribution. After I truncate it, I am getting a random set of numbers that is NOT normally distributed
the cyclist
the cyclist el 23 de Oct. de 2015
I'm not sure exactly what you mean. A truncated normal is not a normal. Maybe you need something like a beta distribution, where you can choose parameters that make it symmetric, but it has a finite range?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by