How can set the starting point of X-axes while using string in the x-axes?

2 次查看(过去 30 天)
Hello,
I am using following code to plot my figure but here the starting point of x-axes is not close the starting point and also the end point is away from the ending point.
How can I remove the unwanted space in the figure?
I marked them with yellow color.
x_axes1=["Case-1","Case-2","Case-3","Case-4"]
Y_axes=[4,5,6,7]
C = categorical(x_axes1)
plot(C, Y_axes, 'ko-')

采纳的回答

VBBV
VBBV 2021-1-8
%if true
% if true
x_axes={'Case-1','Case-2','Case-3','Case-4'}
Y_axes=[4,5,6,7]
figure('name','sample','PaperSize',[3.3 2.71],'NumberTitle','off');
plot(Y_axes)
set(gca,'xticklabel',x_axes.');
xticks(1:4)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by