How to unscale rescaled data?
Mostrar comentarios más antiguos
I have time series data that i rescaled to values between -1,1 using the rescale function i.e.
scaled_data = rescale(data,-1,1);
I have use this data do a prediction and would now like to plot he prediction and confidence intervals in the orginal scale. Is there a way to do this? I tried
prediction_org_scale = rescale(prediction,min(data),max(data));
but realised that this is incorrect and am stuck with how to proceed.
Thanks for any help!
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Polar Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!