How to find normal distribution of the number?

4 Ansichten (letzte 30 Tage)
Abhinav
Abhinav am 6 Feb. 2015
Beantwortet: Star Strider am 6 Feb. 2015
I have a normal distribution like this Normal(6,3) where 6 is mean and 3 is standard deviation. How to generate numbers from this.

Antworten (1)

Star Strider
Star Strider am 6 Feb. 2015
I am not certain what you mean by ‘generate numbers’. If you want to generate random normally-distributed numbers with those parameters, this works:
N63 = 3*randn(1,10)+6;
It will generate a 10-element row vector of normally-distributed random numbers with a mean of 6 and a standard deviation of 3.

Kategorien

Mehr zu Random Number Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by