Generating random numbers from normal distribution
Mostra commenti meno recenti
Hello,
I generated random numbers from normal distribution for a parameter that has typical values within the range 0.0 to 0.4. The generated random numbers have both negative and positive values. How do I generate only positive values to fit the range of my parameter?
I have another concern:
I understand the random numbers generated from normal distribution in matlab actually come from standard normal distribution. Is there a way to generate from the normal distribution?
Thanks in advance
Best Regards
2 Commenti
Walter Roberson
il 25 Giu 2013
Take abs() of your generated number, perhaps?
Pavan Karuturi
il 18 Apr 2023
How to Generate Gaussian Random Variable in MATLAB? Also plot its CDF and PDF.
Risposta accettata
Più risposte (5)
Leah
il 25 Giu 2013
Yes you can do this you just need the right transformation. You cannot generate a bounded normal distribution. It needs to be defined with the mean and standard deviation. So your mean would be 0.2, you just shift the distribution by this amount. If you want a bounded distribution try a triangular or uniform.
standard deviation =0.1 mean = 0.2
r = 0.2 + 0.1.*randn(100,1);
Shashank Prasanna
il 25 Giu 2013
Modificato: Shashank Prasanna
il 25 Giu 2013
I'd like to clarify could of things.
"random numbers generated from normal distribution in matlab actually come from standard normal distribution"
This is true only if you use randn If you want to use uniform random numbers then you have to use rand
Non-standard normal random number can be generated as follows:
mean + sigma*randn();
Uniform random random numbers on a separate interval (not 0-1) between a and b can be generated as follows:
r = a + (b-a).*rand();
This way you can specify your own range and keep it positive if you like.
Ruby
il 27 Giu 2013
0 voti
Mostafa Nakhaei
il 18 Nov 2019
0 voti
The best answer is to simply not consider the side that produce negative results using if statement.
So, generate the whole numbers and then do not consider the left side!
Thanks
1 Commento
Alireza Ahani
il 24 Apr 2021
Modificato: Alireza Ahani
il 24 Apr 2021
In that case, it is not normal distribtion, we would have an arbitrary PDF for distribution:

Alireza Ahani
il 24 Apr 2021
If you want to nessecarily have a "normally (gaussian/bell-shaped) pdf" for generation of the random number, you can use this code:
YLIM = [0.0 0.4];
N=100; % number of random vars
n=3.2; % parameter for adjusting sigma
mu=0.2; % mean
sigma = (YLIM(2)-mu)/n;
x=-5:0.001:5;
y = normpdf(x,mu,sigma);
figure; plot(x,y); ylabel('%'); title('pdf'); xlim(YLIM);
text(YLIM(1),0.9*max(ylim),['probability to be outside of desired limit=' num2str(100*(1-erf(n/sqrt(2)))) '%'])
RndN = mu + randn(N,1).*sigma;
figure; plot(RndN);
you can adjust "n" to have a control over probability of overpassing the limits [0.0 0.4], it is based on this reference:
Categorie
Scopri di più su Uniform Distribution (Continuous) in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!