errorbar的颜色与图形matlab不同

问题描述 投票:0回答:1

我有这个问题,我想做一个不同于我的图形颜色的errobars颜色有我试过的代码

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

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

matlab plot matlab-figure errorbar
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.