Error bars not working on loglog plot
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tim Keegan
el 23 de Mzo. de 2022
Comentada: Tim Keegan
el 23 de Mzo. de 2022

I am trying to add error bars to a loglog plot and matlab and nothing I try is working. I've gone about it in many different ways including plotting using plot(x,y) then changing the scale to log, using loglog(x,y), and trying errorbarlogx. I dont know why the error is only above the data point for the later points (it shouldnt be). This is my code that made the above graph.
loglog(distance,radiation)
log_distance=log(distance);
log_radiation=log(radiation);
fit=polyfit(log_distance,log_radiation,1)
m=fit(1)
b=fit(2)
z=polyval(fit,log(distance))
hold on;
errorbar(distance,exp(z),combined_error)
What am I doing wong?
4 comentarios
Adam Danz
el 23 de Mzo. de 2022
See Star Strider's answer.
You may also want to review some log properties
Respuesta aceptada
Star Strider
el 23 de Mzo. de 2022
You are likely not doing anything wrong. The lower error bars are most likely negative, and values less than or equal to zero do not plot on a logarithmic axis scale. (Those logarithms are defined, however they are complex, and purely imaginary values do not plot in MATLAB.)
5 comentarios
Adam Danz
el 23 de Mzo. de 2022
> Is there any way for me to get the error bars to look normal on the loglog axis?
see this related answer
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations 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!