Plot: x axis and y axis values with commas as 1000 separators

39 vues (au cours des 30 derniers jours)
alpedhuez
alpedhuez le 23 Mai 2020
Modifié(e) : Tommy le 24 Mai 2020
This is a question about values of x axis and y axis in the plot.
First,
tells how to disable scientific notations.
Then, the x axis and y axis will be like '1000000' that is harder to read. I want to have commas as 1000 separaters that is '1,000,000.' Please advise.

Réponse acceptée

Tommy
Tommy le 24 Mai 2020
Modifié(e) : Tommy le 24 Mai 2020
You can format the tick labels using the TickLabelFormat property of the axis. For example:
ax = axes('YScale','log');
plot(ax,1:10,logspace(3,6,10));
ax.YAxis.Exponent = 0;
ax.YAxis.TickLabelFormat = '%,.0f';
See here for details:
(edit) Taking a closer look at the answer you linked, what you need is the comma in the format.

Plus de réponses (0)

Tags

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by