Why is y-axis in loglog not 0?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Daniel
 el 20 de Nov. de 2014
  
    
    
    
    
    Comentada: Thorsten
      
      
 el 24 de Nov. de 2014
            Hello,
I am plotting with "loglog". See code.
Why does the y-axis start at 100 and not 0 as I say it should be with y-lim?

MockF1=[120 100 100 140 140 180 180 100 100 100 100];
MockN1=[38500 20000 23720 4096 4532 2754 1820 16921 8241 40622 19040]; figure
loglog(MockN1,MockF1,'o')
xlabel('N');
ylabel('F');
grid on
xlim([0 500000])
ylim([0 250])
0 comentarios
Respuesta aceptada
Más respuestas (2)
  Azzi Abdelmalek
      
      
 el 20 de Nov. de 2014
        
      Editada: Azzi Abdelmalek
      
      
 el 20 de Nov. de 2014
  
      I think when you set ylim([0 200]) this will be interpreted as [log(0) log(200)]. That means [-Inf log(200)]
0 comentarios
Ver también
Categorías
				Más información sobre Log Plots en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




