Info

This question is closed. Reopen it to edit or answer.

I want to show all the ticks using figure properties on y-axis which are {10^0 , 10^-2 , 10^-4 , 10^-6 , 10^-8}

1 view (last 30 days)

Answers (1)

Walter Roberson
Walter Roberson on 18 Jul 2019
Edited: Walter Roberson on 19 Jul 2019
yticks(fliplr([10^0 , 10^-2 , 10^-4 , 10^-6 , 10^-8]))
  5 Comments
Walter Roberson
Walter Roberson on 19 Jul 2019
Which release are you using? That does not seem to be happening for me, at least not when I do
ax = gca;
ax.YAxis.FontSize = 20;

Tags

Community Treasure Hunt

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

Start Hunting!