MATLAB: Semilogy function, and ylabel number

semilogy

I am using the function semilogy and I get a graphic with numbers 10^1 10^2… http://img829.imageshack.us/img829/9923/grafikas.jpg I need to graph with the normal numbers For example not 10^2 but that be 100

Best Answer

Correcting and optimizing Paulo's answer:
x=0:0.1:10;
s=semilogy(x,10.^x);
set(gca,'YTickLabel',num2str(get(gca,'YTick').'));