generating random variables with expected value of one and finite variation.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohammad Sayeed
am 23 Jan. 2015
Kommentiert: Mohammad Sayeed
am 23 Jan. 2015
How can I generate positive i.i.d random variables with the expected value of one and finite variation in MATLAB? Anyone help please.
0 Kommentare
Akzeptierte Antwort
Torsten
am 23 Jan. 2015
a = 1;
y = a*randn(1000,1) + 1;
creates 1000 normally distributed random numbers with expected value of 1 and variance a.
Best wishes
Torsten.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!