New Reply

Creating a distribution with specific mean and variance in FORTRAN 90

 
Share Thread Thread Tools
Feb18-13, 02:44 AM   #1
 

Creating a distribution with specific mean and variance in FORTRAN 90


Hi,

I'm trying to create a normal distribution with mean 0.5 and variance 0.05. I tried it initially with MATLAB, for which I used
Code:
newdist=0.5+(randn(1,1000)*sqrt(0.05));
Could you please help me in doing this in FORTRAN 90? Would generating a sequence using RANDOM_NUMBER and using the above equation give me similar results?

Thank you.

(P.S. : The LINUX OS on my system needs to be replaced, and I'm writing some more code before I can run them on another system. It would be great to have your help in the meanwhile, so I could check everything together. Thanks again)
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Feb18-13, 03:40 AM   #2
 
Recognitions:
Gold Membership Gold Member
You can't do it directly with random_number, which has a uniform distribution. There are different ways to produce a normal distribution from a uniform distribution, such as the Box-Muller transform.
Feb18-13, 01:56 PM   #3
 
Recognitions:
Homework Helper Homework Help
Hi sue132!

Here's some C source code for nrandom that generates normally distributed random numbers (based on the Box-muller transform).

The algorithm is easy to port to any computer language.
It comes from Numerical Recipes in C, for which there is also a FORTRAN version.
Feb18-13, 11:19 PM   #4
 

Creating a distribution with specific mean and variance in FORTRAN 90


Thank you for the replies
New Reply

Tags
distribution, fortran, normal
Thread Tools


Similar Threads for: Creating a distribution with specific mean and variance in FORTRAN 90
Thread Forum Replies
Fortran: Creating a sequence with constraints Programming & Comp Sci 9
Creating FORTRAN Libraries Programming & Comp Sci 0
Fortran 90 creating an array of unknown size Programming & Comp Sci 3
Fortran: creating array containing characters Programming & Comp Sci 1
Variance of Sampling Distribution VS Sample Variance Calculus & Beyond Homework 0