MATLAB: Can I change axes of existing figure from linear to loglog in Matlab without redrawing all the data

figure

I have a given Matlab figure, but not the original data. Can I change axes of existing figure from linear to loglog in Matlab without redrawing all the data?

Best Answer

set(gca,'XScale','log','YScale','log')