Hi all
How can I change the format of the numbers in the x-axis to be like 10,000 instead of 10000?
number of rounds 10000 but I would like to display like 10,000.
How could I change it?
plot(1:Simulation,ooooo(2,:),'k-.');
title('PDR')
xlabel('Rounds');
ylabel('Time (ms)');
grid on

 Respuesta aceptada

Star Strider
Star Strider el 11 de Ag. de 2022

0 votos

In the NumericRuler Properties documentation see TickLabelFormat to understand how to put the comma thousands separator in the tick format.

9 comentarios

Walter Roberson
Walter Roberson el 11 de Ag. de 2022
This is a relatively new feature involving using comma as a format item in the sprintf()-like format string. The comma is not generally recognized in other places that accept sprintf()-like format strings.
NOUF ALHARBI
NOUF ALHARBI el 11 de Ag. de 2022
Hi
I am traing to add TickLabelFormat but still I have error
plot(1:Simulation,ooooo(2,:),'k-.');
title('PDR')
xlabel('Rounds',TickLabelFormat,'%,g');
ylabel('Time (ms)');
grid on
Are there any ideas?
Walter Roberson
Walter Roberson el 11 de Ag. de 2022
plot(1:Simulation,ooooo(2,:),'k-.');
title('PDR')
xlabel('Rounds')
xtickformat('%,g');
ylabel('Time (ms)');
grid on
The xtickformat() call requires R2016b or later. I am not sure when ',' became supported as a format item; R2018b at latest.
NOUF ALHARBI
NOUF ALHARBI el 11 de Ag. de 2022
Many thanks Walter
This code work with me.
But I have problem, I wnat number like this:
1000 2000 3000 ..... 10,000
with your code add comma but with 1,000 2,000 3,000 ... 10,000
How can I change it?
Rgards,
Nouf
Walter Roberson
Walter Roberson el 11 de Ag. de 2022
The %, format modifier only supports comma for every 3 locations.
You would need to construct your own tick labels according to whatever rules you like. For example,
ax = gca;
xticklabels(ax, regexprep(compose('%d', ax.XTicks), '(\d\d)(\d\d\d)$', '$1,$2'));
This particular code will only put in one comma. For example 3141 31415 314159 3141592 would become 3141 31,415 314,159 3141,592
NOUF ALHARBI
NOUF ALHARBI el 11 de Ag. de 2022
There is error:
Unrecognized method, property, or field 'XTicks' for class 'matlab.graphics.axis.Axes'.
Walter Roberson
Walter Roberson el 11 de Ag. de 2022
ax = gca;
xticklabels(ax, regexprep(compose('%d', ax.XTick), '(\d\d)(\d\d\d)$', '$1,$2'));
NOUF ALHARBI
NOUF ALHARBI el 11 de Ag. de 2022
Thank you so much Walter.
Star Strider
Star Strider el 11 de Ag. de 2022
@Walter Roberson — Thank you. (Internet here down for two hours this morning.)

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 10 de Ag. de 2022

0 votos

Turn the number into a string. See my attached little utility function.

3 comentarios

My function handles those numbers perfectly:
v = [3141 31415 314159 3141592]
v = 1×4
3141 31415 314159 3141592
for k = 1 : numel(v)
str = CommaFormat(v(k))
end
str = '3,141'
str = '31,415'
str = '314,159'
str = '3,141,592'
Walter Roberson
Walter Roberson el 11 de Ag. de 2022
The challenge is that the user does not want the comma for 3141 -- only for 10000 or more.
Image Analyst
Image Analyst el 11 de Ag. de 2022
@Walter Roberson oh, okay. In that case you'd have to put in a check for the number of digits being 5 or greater if he wanted to use that function.

Iniciar sesión para comentar.

Preguntada:

el 10 de Ag. de 2022

Comentada:

el 11 de Ag. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by