size of axis numbers

Hellho everyone. Do you know how to change the size of axis numbers in a figure in matlab?

Respuestas (3)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 19 de Mayo de 2021

2 votos

ax = gca;
ax.FontSize = 15; % Font Size of 15
Jan
Jan el 18 de Mayo de 2021
Editada: Jan el 18 de Mayo de 2021

1 voto

Do you mean the tick labels?
axes('FontSize', 24, 'NextPlot', 'add');
Without setting the NextPlot property, a plot() command will reset the size - maybe, I cannot try it currently.
Jonas
Jonas el 18 de Mayo de 2021

0 votos

if you are talking about the font size of the tick labels have a look into https://de.mathworks.com/matlabcentral/answers/173658-how-can-i-change-the-font-size-of-plot-tick-labels

2 comentarios

Fábio Oliveira
Fábio Oliveira el 19 de Mayo de 2021
Thank you
Here are a couple of different ways to change axis font size.
x = linspace(-2*pi, 2*pi);
y = cos(x);
plot(x,y);
set(gca,'FontSize',20, 'FontName', 'Courier')
xlabel('x(t)') % Font Size and Name are taken from Line 4 command
ylabel('Y', 'FontSize', 15, 'FontName','Garamound', 'FontWeight','bold')
title("Font Size Change")
%% Alternative way:
fontsize(gca, 13, 'points')
fontname(gca, "SansSerif")
%% Alternative Way:
xlabel('x', 'FontName','Garamond', 'FontSize',10)
%% Axis and Font Color change options
ax = gca;
ax.YColor = 'r';
ax.XColor = 'm';

Iniciar sesión para comentar.

Categorías

Más información sobre Axes Appearance en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 18 de Mayo de 2021

Comentada:

el 26 de En. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by