errobar的颜色不同于图matlab

时间:2018-03-26 22:09:47

标签: matlab plot matlab-figure errorbar

我有这个问题我想制作一种不同于我的图表颜色的errobars颜色 有我试过的代码

pp=errorbar(x,testMatriceFluxSortie/ValeurFluxSortie(1,1),err)
pp.Color=[255 0 1]./255;

但它给了我这一切都是红色的 my graph

1 个答案:

答案 0 :(得分:1)

您可以随时使用hold on并在绘制错误栏后仅绘制x,y数据,例如:

x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = 8*ones(size(y));

errorbar(x,y,err,'or'); hold on
plot(x,y,'b');

enter image description here