How to generate a Gaussian random variable?
조회 수: 5 (최근 30일)
이전 댓글 표시
I need to generate Gaussian random variable with mean=0 and standard deviation=2.
How to generate using MATLAB?
Please help me.
댓글 수: 0
답변 (1개)
Mohammad Sami
2021년 6월 23일
You can use the function randn to generate the random variable as desired.
a = 2; % standard deviation
b = 0; % mean
nrow = 1000;
ncol = 1;
y = a.*randn(nrow,ncol) + b;
mean(y)
std(y)
참고 항목
카테고리
Help Center 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!