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!