How do I control errorbar line appearance independently of the markers?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ziv Kassner
el 18 de Mzo. de 2019
Comentada: Ziv Kassner
el 18 de Mzo. de 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 comentarios
KALYAN ACHARJYA
el 18 de Mzo. de 2019
Editada: KALYAN ACHARJYA
el 18 de Mzo. de 2019
Please check the answer
Respuesta aceptada
KALYAN ACHARJYA
el 18 de Mzo. de 2019
Editada: KALYAN ACHARJYA
el 18 de Mzo. de 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
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!