How to generate a Gaussian random variable?
Show older comments
I need to generate Gaussian random variable with mean=0 and standard deviation=2.
How to generate using MATLAB?
Please help me.
Answers (1)
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)
1 Comment
relinquere
on 19 Jul 2021
Categories
Find more on Random Number Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!