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

1 visualizzazione (ultimi 30 giorni)
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-')

Risposta accettata

VBBV
VBBV il 8 Gen 2021
%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)

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by