How to generate a Gaussian random variable?

6 visualizzazioni (ultimi 30 giorni)
relinquere
relinquere il 23 Giu 2021
Commentato: relinquere il 19 Lug 2021
I need to generate Gaussian random variable with mean=0 and standard deviation=2.
How to generate using MATLAB?
Please help me.

Risposte (1)

Mohammad Sami
Mohammad Sami il 23 Giu 2021
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)
ans = 0.0573
std(y)
ans = 1.9947

Categorie

Scopri di più su Random Number Generation in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by