I need to generate not completely random number that would be influenced by functional dependency.
Current solution I was looking was to give an algorithm value of statistical dispersion or spread if may and an average and derive the integer from there since formula for dispersion looks like this: $f(x) = \frac{(x_1-\overline{X})^2+(x_2-\overline{X})^2+...+(x_n-\overline{X})^2}{n}$
Is there any better way of doing this say using mode or median?
EDIT: I am creating a simulation for Theory of Constrictions. In this simulations user is allowed to input the range for every 'stations' random throughput yet in reality these values are not random they are in normalized distribution with certain deviation to one or another side.