How can I generate a sample of 1-D random numbers following Gaussian distribution

I want to generate a sample of 1-D random numbers in an interval [a, b] following Gaussian distribution (using the analytical expression for probability density distribution(PDF)).

1 comentario

What would that even mean? Do you want to specify the mean and Standard deviation then truncate anything outside of [A,B]?

Iniciar sesión para comentar.

 Respuesta aceptada

Simon
Simon el 14 de Nov. de 2013
Editada: Simon el 14 de Nov. de 2013
Hi!
It seems you already found your solution on file exchange. Why don't you use it?
Your input function will be
m=0;
sigma=1;
myfun = @(x) exp(-(x - m).^2 ./ (2*sigma^2)) ./ (sigma*sqrt(2*pi));

1 comentario

Hi, it is true. I asked this question to make sure that I chose the right file. thanks for your help

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Random Number Generation en Centro de ayuda y File Exchange.

Preguntada:

el 14 de Nov. de 2013

Comentada:

el 15 de Nov. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by