How to generate a Gaussian random variable?
3 ビュー (過去 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!