Filter löschen
Filter löschen

How to change the size of error bar?

70 Ansichten (letzte 30 Tage)
Zeynab Mousavikhamene
Zeynab Mousavikhamene am 16 Jan. 2020
Kommentiert: Star Strider am 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

Akzeptierte Antwort

Star Strider
Star Strider am 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 Kommentare
Zeynab Mousavikhamene
Zeynab Mousavikhamene am 17 Jan. 2020
I found it just change the linewitdth inside the error bar like this:
errorbar(...,'.m','CapSize',20,'LineWidth',2);
Thank you
Star Strider
Star Strider am 17 Jan. 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by