December 15th, 2004, 4:56 pm
Misi,If you want to rescale the distribution, try calculating the empirical cumulative distribution function, passing it through the normal distribution function's inverse cdf, and then adjusting for mean and std. Ie, x' = sigma*inverse_normal_cdf(empirical_cdf(x)) + muyou do need to be careful with your last data point however, to avoid infinity problems.