필터 지우기
필터 지우기

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