MATLAB: I want denormalization of the prediction data

Deep Learning ToolboxMATLAB

I used log function for normalize my time series data then i applied narxnet technique
I got prediction but, want denormalization output data
these data

Best Answer

>> 10^log10(7)
ans = 7
>> exp(1)^log(7)
ans = 7
Hope this helps.
Thank yu for formally accepting my answer
Greg