How to add more lables to x axis?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
KSSV
el 13 de Nov. de 2017
x = 1:10 ;
y = rand(1,10) ;
plot(x,y) ;
set(gca,'XTick',0:0.5:10)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!