gpt4 book ai didi

matlab - 如何分离颜色errorbar matlab

转载 作者:太空宇宙 更新时间:2023-11-03 19:27:01 25 4
gpt4 key购买 nike

给定以下示例代码:

x = 0:pi/10:pi;
y = sin(x);
e = std(y)*ones(size(x));

figure
errorbar(x,y,e)

与水平线相比,您如何为线着色?

我试过了

errorbar(x,y,e,'--mo')

但这会一起改变所有这些......

最佳答案

获取 errorbar 对象的句柄。它有两个 child ,分别对应于数据图和误差线。然后你可以分别设置每个颜色。

h = errorbar(x,y,e) %// a color spec here would affect both data and error bars
hc = get(h, 'Children')
set(hc(1),'color','b') %// data
set(hc(2),'color','g') %// error bars

关于matlab - 如何分离颜色errorbar matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22797919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com