Fill command for logarithmic plots axes labels

Hello,
I would like to label my axes in the identical way to which is done using the semilogx command. This involves 10 with a superscript of the appropriate power. I do not want to label using scientific notation or 10^x (I don't want the "^" symbol and I want the "x" to be raised to a superscript).
I am using the fill command as follows:
hf1 = fill(log10([f_n(2:end); flipud(f_n(2:end))]),log10([max_ind_1(2:end)'; flipud(min_ind_1(2:end)')]),[0.7 0.7 0.7]);
Thank you in advance if you can help!

1 comentario

Star Strider
Star Strider el 2 de Oct. de 2014
Please post some or all of your data used in your code. It’s difficult to understand what your code is doing without it.
You will need to use the text function, but I can’t be more specific without understanding in greater detail what you want to do and how it relates to your plot.

Iniciar sesión para comentar.

 Respuesta aceptada

Kelly Kearney
Kelly Kearney el 2 de Oct. de 2014
To automate dpb's suggestion, you can use my tick2text function:
plot(1:10, rand(10,1));
tick2text(gca, 'axis', 'x', 'xformat', @(x) sprintf('10^{%.0f}',x), 'convert', true);

1 comentario

Kristy Hansen
Kristy Hansen el 3 de Oct. de 2014
Thank you! Your function is very nice and gave me exactly what I wanted :)

Iniciar sesión para comentar.

Más respuestas (1)

dpb
dpb el 2 de Oct. de 2014
Editada: dpb el 2 de Oct. de 2014
The basic deal is for some unbeknownst and unfathomable reason, TMW hasn't implemented the Tex/LaTex interpreter in the ticklabel property renderer. That being so, you must write them yourself with text
As an example of the idea, try the following--the same thing works for whatever plot functional form is used...
axes % make an axes object
xlim([0 10]) % convenient limits
xt=get(gca,'xtick'); % get the values from the ticks
set(gca,'xticklabel','') % clear existing tick labels
xlab=num2str(xt.','{10}^{%d}'); % TeX label string array of exponential form
text(xt,-0.05*ones(size(xt)),xlab,'horizontalalign','center') % and write

1 comentario

Kristy Hansen
Kristy Hansen el 3 de Oct. de 2014
Thank you for your answer and for enlightening me on why things weren't working!

Iniciar sesión para comentar.

Categorías

Más información sobre Labels and Annotations en Centro de ayuda y File Exchange.

Preguntada:

el 2 de Oct. de 2014

Comentada:

el 3 de Oct. de 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by