How to add more lables to x axis?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    

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 Commenti
Risposte (1)
Vedere anche
Categorie
				Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

