How to avoid printing certain values in axes of a plot?

조회 수: 2 (최근 30일)
Gayan Lankeshwara
Gayan Lankeshwara 2019년 11월 18일
댓글: Gayan Lankeshwara 2019년 11월 18일
I have the following plot
Since x-axis is the 'number of iterations' . I need to avoid prinitng float values.
What is want is only [1,2,3,4].
Below is my code.
Thank you.
for mm = 1:num_intervals
plot([1,2,3,4], CI')
end
xlabel('Iteration Number')
ylabel ('CI')
legend('App_1','App_2','App_3','App_4','App_5','App_6','App_7','App_ 8','App_9','App_{10}')
CI_variation.png

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 11월 18일
set(gca,'XTick',1:1:4)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by