Normalize and denormalize

435 Views Asked by At

I have this Function

y = (x - min) / (max - min)

which normalizes my values. Now i want to know how to denormalize them, how does the new function look like?

1

There are 1 best solutions below

4
On BEST ANSWER

Suppose the minimum is achieved at $x_1$ and the maximum at $x_2$. It is easy to write a linear interpolant: in fact, just use point-slope form:

$$ y - M = \frac{M - m}{x_2 - x_1} \left( x - x_2 \right) $$

and you have a function that returns the raw scores instead of the normalized values.