How can I plot 2 graphs with errorbar each one?

13 ビュー (過去 30 日間)
Jonathan Bijman
Jonathan Bijman 2019 年 6 月 13 日
コメント済み: Jonathan Bijman 2019 年 6 月 13 日
Dear community
I'm plotting 2 graphs and I want to put errorbar in each plot.
How can I do that?
Thanks!

採用された回答

dpb
dpb 2019 年 6 月 13 日
Use errorbar and hold on or as per the documentation, if y is a matrix errorbar plots a separate line for each column.
  4 件のコメント
dpb
dpb 2019 年 6 月 13 日
編集済み: dpb 2019 年 6 月 13 日
Why are you using plot to draw the same data as are drawn with errorbar?
x = linspace(0, 50, numel(Voc_C)); % x points vector (row)
X = [x;x].'; % 2-column X to plot against
Y = [Voc_C(:) Voc_D(:)]; % 2-column Y to plot
err=[Voc_desv_C(:) Voc_desv_D(:)]; % 2-column error to plot
errorbar(X,Y,err)
title('Voc Plot')
xlabel('Tiempo (Días)')
ylabel('Voc (V)')
legend('Voc Clean','Voc Dirty');
Jonathan Bijman
Jonathan Bijman 2019 年 6 月 13 日
Thank U so much! it works =)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeErrorbars についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by