From: Kuo-Hsien on
Hi all,

As we known, the scale in a figure will be shown as | ... | ... | ... | ... | ... |

How to turn off the display of scale "| ... | ... | ... | ... | ... |"?

Thanks
From: us on
"Kuo-Hsien" <mchangks(a)hotmail.com> wrote in message <hrn5tl$sl9$1(a)fred.mathworks.com>...
> Hi all,
>
> As we known, the scale in a figure will be shown as | ... | ... | ... | ... | ... |
>
> How to turn off the display of scale "| ... | ... | ... | ... | ... |"?
>
> Thanks

one of the solutions

plot(0:10,rand(1,11));
set(gca,'xtick',[]);
set(gca,'ytick',0:.05:1);

us