How to Plot Horizontal errorbar
Mostrar comentarios más antiguos
Does anybody knows how can I plot horizontal error bars in MATLAB? I am familiar with the errorbar function, which allows to plot vertical error bars. However, I need to be able to horizontal error bars. There is a herrorbar function for this purpose, but it doesn't work well. Any advice would be appreciated. Thanks!
Respuestas (2)
Image Analyst
el 21 de Ag. de 2013
0 votos
Then try the line() function to make it manually on your own.
1 comentario
Image Analyst
el 22 de Ag. de 2013
line([x1 x2], [y1 y2]);
the cyclist
el 27 de Ag. de 2013
0 votos
You could try this submission from the File Exchange:
Categorías
Más información sobre Errorbars en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!