MATLAB: How to scale the Tick Label by a number

axesaxisfigureimagesclabel;plotscaleticktick label

I'm using images(imd,clims) to plot a figure. The figure is a 64×64 matrix, and the ticks currently go from 0 to 64 on both x and y. My question is how can I scale the ticks say by 0.05 (as in xyLabel = 0.05 .* (0:64) ) and change the value displayed.
Thank you!

Best Answer

A=randi(64,64)
image(A)
xt=arrayfun(@num2str,get(gca,'xtick')*0.05,'un',0)
yt=arrayfun(@num2str,get(gca,'ytick')*0.05,'un',0)
set(gca,'xticklabel',xt,'yticklabel',yt)