Remove error bar ends for R2014b?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Henrik
am 20 Feb. 2015
Kommentiert: Gabriel Piedrafita
am 4 Okt. 2017
Hi all
Is there any way to remove the error bar ends in matlab R2014b?
I used a function called removeErrorBarEnds for this, but cannot find a version that works in R2014b.
Thanks in advance.
Henrik
1 Kommentar
Gabriel Piedrafita
am 4 Okt. 2017
At least in the latest versions of MATLAB, one can use the in-built function 'errorbar' and remove the bar ends by tuning the error bar cap size to 0.
y = rand(1,10); err = y.*0.1; errorbar(y,err,'CapSize',0)
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Errorbars finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!