标签: matlab plot matlab-figure errorbar
我有这个问题我想制作一种不同于我的图表颜色的errobars颜色 有我试过的代码
pp=errorbar(x,testMatriceFluxSortie/ValeurFluxSortie(1,1),err) pp.Color=[255 0 1]./255;
但它给了我这一切都是红色的 my graph
答案 0 :(得分:1)
您可以随时使用hold on并在绘制错误栏后仅绘制x,y数据,例如:
hold on
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');