How to display decimal points on a graph ?

131 vues (au cours des 30 derniers jours)
Steven KIM
Steven KIM le 30 Mai 2022
Commenté : Steven KIM le 30 Mai 2022
Hello, everyone I have a question below part.
How to display decimal points on a graph ?

Réponse acceptée

Alberto Cuadra Lara
Alberto Cuadra Lara le 30 Mai 2022
Modifié(e) : Alberto Cuadra Lara le 30 Mai 2022
Hello Steven,
To display decimals point you can use xtickformat and ytickformat for the x and y axis, respectively. Also, you may want to remove the exponent from the axis.
f = figure;
ax = gca;
x = linspace(0, 1e3);
y = linspace(-3, 3) * 1e-3;
plot(x,y);
% Set format to decimals
ytickformat('%.3f');
% Remove exponent
ax.YAxis.Exponent = 0;

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by