How to remove some xticklabels (but still keeping all the xticks)?

34 次查看(过去 30 天)
How can I remove some xticklabels, but still keeping all the xticks?
Let's consider the following example:
x = 1:100;
y = exp(-0.1*x);
plot(x,y)
I want to remove the xticklabels corresponding to "0", "10", "20", "30", getting the following plot:
How can I do it?
I tried the following, without success:
ax = gca;
ax.XTickLabel(1:4) = '';

采纳的回答

Voss
Voss 2024-10-29,14:11
x = 1:100;
y = exp(-0.1*x);
plot(x,y)
ax = gca;
ax.XTick = 0:10:100;
ax.XTickLabels(1:4) = {''};

更多回答(1 个)

Steven Lord
Steven Lord 2024-10-29,14:25
x = 1:100;
y = exp(-0.1*x);
plot(x,y)
xticks(0:10:100)
xl = xticklabels;
xl(1:2:end) = {''}; % Replace every other label
xticklabels(xl)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by