problems to add yticklabel in log-log figure

Dear all,
I have some issue to illustrate a ytick label in a figure. Here is the piece of code related to this:
The ytick label 10^{0} does not appear in this case! Any ideas?
Cheers

2 Comments

Adam Danz
Adam Danz on 19 Feb 2019
Edited: Adam Danz on 19 Feb 2019
Providing code is helpful, especially when it's in a format that can be copy/pasted.
set(gca,'XScale','log', 'YScale','log', 'XTick', [0 0.5 1 2 6 12 24],'XTickLabel', ...
{'0','0.5','1','2','6','12','24'},'YMinorTick','on','YScale','log','YTick',...
[1 10 100 1000],'YTickLabel',{'10^{0}','10^{1},10^{2},10^{3}'})

Sign in to comment.

Answers (1)

set(gca,'XScale','log', 'YScale','log', 'XTick', [0 0.5 1 2 6 12 24],'XTickLabel', ...
{'0','0.5','1','2','6','12','24'},'YMinorTick','on','YScale','log','YTick',...
[1 10 100 1000],'YTickLabel',{'10^{0}','10^{1}','10^{2}','10^{3}'})

Asked:

on 19 Feb 2019

Answered:

on 19 Feb 2019

Community Treasure Hunt

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

Start Hunting!