How to change the size of error bar?
115 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Zeynab Mousavikhamene
le 16 Jan 2020
Commenté : Star Strider
le 17 Jan 2020
I need to change the size of the vertical line of error bar. so I dont mean the size of cap like 'CapSize',18
0 commentaires
Réponse acceptée
Star Strider
le 16 Jan 2020
I am not certain what you want.
Try this:
errs = rand(1,10);
x = 1:10;
y = randi([10 20],1,10);
figure
plot(x, y)
hold on
heb = errorbar(x, y, errs, '.');
hold off
grid
heb.LineWidth = 2;
The error bars and the caps are both linewidth=2 here, with everything else being the default properties.
6 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Dialog Boxes dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!