MATLAB: Data normalization in neural network

data normalizationneural networks

I have used this formula to normalize the data between -1 and 1:
Y = -1 + 2.*(data - min(data))./(max(data) - min(data));
how I can reverse it ?
Thanks

Best Answer

Solve the equation for data!
Hope this helps.
Thank you for formally accepting my answer
Greg