How to add more lables to x axis?

조회 수: 2 (최근 30일)
Chen Zhu
Chen Zhu 2017년 11월 13일
답변: KSSV 2017년 11월 13일
In this plot, the X axis does not clearly indicates the values. The different between each point is 500. How to reduce it to 200, like the plot below?
Code to generate CDF:
[f,x] = ecdf(sample1);
plot(x,f,'r'); hold on;
[f2,x2] = ecdf(sample2);
plot(x2,f2,'g'); %CDF

답변 (1개)

KSSV
KSSV 2017년 11월 13일
x = 1:10 ;
y = rand(1,10) ;
plot(x,y) ;
set(gca,'XTick',0:0.5:10)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by