Errorbar plot has no connecting lines

5 次查看(过去 30 天)
I just used the example from doc,
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = 8*ones(size(y));
errorbar(x,y,err)
However, the figure has no connecting lines, unlike the documentation:
  1 个评论
Star Strider
Star Strider 2016-9-19
What version of the documentation did you use? The current online documentation is for R2016b, and that code works correctly for me (connects the centres of the bars with a line, and plotting the error bars) in R2016b.
Type:
doc errorbar
in your Command Window to get the documentation for your version. There could be version differences.

请先登录,再进行评论。

采纳的回答

fireattack
fireattack 2016-9-23
It is fixed in R2016b.

更多回答(1 个)

mbonus
mbonus 2016-9-19
errorbar(x,y,err,'-b')
  4 个评论
mbonus
mbonus 2016-9-19
编辑:mbonus 2016-9-19
Or after you plot it you could try
set(gca,'linestyle','--')
fireattack
fireattack 2016-9-23
编辑:fireattack 2016-9-23
thanks for the following up. I can't reproduce my original problem on another computer, so I guess something was wrong with my setup. Luckily after updating my Matlab to 2016b it fixed itself.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Errorbars 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by