errorbar 的颜色与图形 matlab 不同
Color of errobar different from the graph matlab
我有这个问题我想使误差条的颜色与我的图表颜色不同
有我试过的代码
pp=errorbar(x,testMatriceFluxSortie/ValeurFluxSortie(1,1),err)
pp.Color=[255 0 1]./255;
但它给了我这一切都是红色的
my graph
您始终可以使用 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');
我有这个问题我想使误差条的颜色与我的图表颜色不同 有我试过的代码
pp=errorbar(x,testMatriceFluxSortie/ValeurFluxSortie(1,1),err)
pp.Color=[255 0 1]./255;
但它给了我这一切都是红色的 my graph
您始终可以使用 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');