How do I control errorbar line appearance independently of the markers?
1 view (last 30 days)
Show older comments
Ziv Kassner
on 18 Mar 2019
Commented: Ziv Kassner
on 18 Mar 2019
How do I control the appearance of errorbars?
I want to change the line style of the errorbars independently of the markers
Thanks,
Ziv
4 Comments
Accepted Answer
KALYAN ACHARJYA
on 18 Mar 2019
Edited: KALYAN ACHARJYA
on 18 Mar 2019
-Now, change the whiskers into red '--' while keeping the 'x' data a blue 'o'-
x = 1:10:100;
err = 8*ones(size(x));
errorbar(x,err,'o');
hold on;
errorbar(x,err,'r','linestyle','none');
Note: There may be more easy way
More Answers (0)
See Also
Categories
Find more on Errorbars in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!