I'm not sure if I understand your question. But you mean you have to produce the data, or you already have had the data?
In any case, there are various softwares that allow you to do it. For example,
MS Excel: you use the function "NORMDIST"
It returns the normal distribution for the specified mean and standard deviation.
Syntax
NORMDIST(x,mean,standard_dev,cumulative)
X is the value for which you want the distribution.
Mean is the arithmetic mean of the distribution.
Standard_dev is the standard deviation of the distribution.
You can also use Origin by www.originlab.com or Mathematica by Wolfram Research.
If you know how to program, for example in C language, you can also use the random number generator: gasdev(long *idum) by the Numerical Recipes team (www.nr.com).
If I understood more about your question, I would be able to give you a more specific answer.