How to Plot Horizontal errorbar
显示 更早的评论
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!
回答(2 个)
Image Analyst
2013-8-21
0 个投票
Then try the line() function to make it manually on your own.
1 个评论
Image Analyst
2013-8-22
line([x1 x2], [y1 y2]);
the cyclist
2013-8-27
0 个投票
You could try this submission from the File Exchange:
类别
在 帮助中心 和 File Exchange 中查找有关 Errorbars 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!