Filter löschen
Filter löschen

Errorbar plot has no connecting lines

15 Ansichten (letzte 30 Tage)
fireattack
fireattack am 19 Sep. 2016
Bearbeitet: fireattack am 23 Sep. 2016
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 Kommentar
Star Strider
Star Strider am 19 Sep. 2016
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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

fireattack
fireattack am 23 Sep. 2016
It is fixed in R2016b.

Weitere Antworten (1)

mbonus
mbonus am 19 Sep. 2016
errorbar(x,y,err,'-b')
  4 Kommentare
mbonus
mbonus am 19 Sep. 2016
Bearbeitet: mbonus am 19 Sep. 2016
Or after you plot it you could try
set(gca,'linestyle','--')
fireattack
fireattack am 23 Sep. 2016
Bearbeitet: fireattack am 23 Sep. 2016
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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Errorbars finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by