From: quasistar on
Hi..
I use "stairs" command to plot Zero Order Hold plots. But while plotting log values from it, it shows the points on axises/axes as non exponential simple numbers (say n). What would I have to do if I wanted the points on axises as 10^n (as with "loglog" plots)??

Thanks
From: us on
quasistar <mayur.ec.iitkgp(a)gmail.com> wrote in message <374248249.5963.1278775773906.JavaMail.root(a)gallium.mathforum.org>...
> Hi..
> I use "stairs" command to plot Zero Order Hold plots. But while plotting log values from it, it shows the points on axises/axes as non exponential simple numbers (say n). What would I have to do if I wanted the points on axises as 10^n (as with "loglog" plots)??
>
> Thanks

one of the solutions
- as a skeleton...

line(0:5,rand(1,6));
set(gca,'xtick',[1,pi,4]);
set(gca,'xticklabel',{'apple','CSSM','FEX'});

us