I want to implement inverse of min-max scaler in numpy instead of sklearn. Applying min max scale is easy
v_min, v_max = v.min(), v.max()
new_min, new_max = 0, 1
v_p = (v - v_min)/(v_max - v_min)*(new_max - new_min) + new_min
v_p.min(), v_p.max()
But once I got the scaled value, how can i go back to original one in numpy