How to change the size of error bar?

조회 수: 115 (최근 30일)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 1월 16일
댓글: Star Strider 2020년 1월 17일
I need to change the size of the vertical line of error bar. so I dont mean the size of cap like 'CapSize',18

채택된 답변

Star Strider
Star Strider 2020년 1월 16일
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
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 1월 17일
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 2020년 1월 17일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dialog Boxes에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by