How to do stem plots centered around a function?

3 次查看(过去 30 天)
Hi!
I want to use stem plots for showing the deviation of measured values from an equation and think stem is a good choice.
However, I have not found a way of doing these stem plots centered from anything else than a constant (basevalue).
Is there anything like a baseline that I could express my equation in and get the stem plots centered around?
Best regards

采纳的回答

KSSV
KSSV 2017-7-11
doc errorbar
x = 1:10;
y = sin(x);
e = std(y)*ones(size(x));
plot(x,y,'b')
hold on
errorbar(x,y,e,'bo','markerfacecolor',[0 0 1])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by