How to force y-axis values not to use scientific notation in axes?
107 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
My y-axis ranges from 0.001 to 0.003, it always shows up as 1-3 x 10^-3.
How do I force it show up as 0.001 to 0.003?
Risposta accettata
Ameer Hamza
il 10 Giu 2020
Modificato: Ameer Hamza
il 10 Giu 2020
Set exponent property to 0
ax = gca; % axes handle
ax.YAxis.Exponent = 0;
You can add these lines after creating the plot.
2 Commenti
Kevin Park
il 19 Nov 2021
I tried this on a right-axis plot and I get the following error with this solution:
>> ax.YAxis.Exponent = 0;
Assigning to 2 elements using a simple assignment statement is not supported. Consider using comma-separated list assignment.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!