MATLAB: Convert log scale to linear scale

linearlog

Hi all,
I made a figure whose Y axis I converted to log scale using the command set(gca,'yscale','log'). I want to convert the Figure back to linear scale. Is it possible to do it on MATLAB.
Thanks. NS

Best Answer

set(gca,'yscale','linear')
Related Question