How to make scientific notation appear next to each tick/label on axes instead of the top?

11 vues (au cours des 30 derniers jours)
Hi everyone,
I am having the following graph where scientific notation appears on the top. How can I make the notation to appear next to each axis tick/value?
Thanks in advance.

Réponse acceptée

Chunru
Chunru le 31 Juil 2021
Modifié(e) : Chunru le 31 Juil 2021
x = linspace(1e-6, 2e-6, 21);
plot(x)
h = gca;
h.YTickLabel = string(x*1e6)+"\times10^{-6}";
  4 commentaires
Wolfgang McCormack
Wolfgang McCormack le 31 Juil 2021
@Chunru thank you so much. Just one last question, what if it starts with 0? It appears like 0 x 10^-6. How can I just make it appear as 0?
Chunru
Chunru le 1 Août 2021
All these are "manual" and not "auto":
x = linspace(1e-6, 2e-6, 21);
plot(x)
h = gca;
h.YTickLabel = string(x*1e6)+"\times10^{-6}";
h.YTickLabel{1} ="0"; % not the correct value; for demo only

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by