How to find normal distribution of the number?

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.

답변 (1개)

Star Strider
Star Strider 2015년 2월 6일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Random Number Generation에 대해 자세히 알아보기

질문:

2015년 2월 6일

답변:

2015년 2월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by