Remove error bar ends for R2014b?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Henrik
el 20 de Feb. de 2015
Comentada: Gabriel Piedrafita
el 4 de Oct. de 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 comentario
Gabriel Piedrafita
el 4 de Oct. de 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)
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Errorbars en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!