I don't want to draw the lines between the errorbar

1 回表示 (過去 30 日間)
studentmatlaber
studentmatlaber 2022 年 8 月 18 日
コメント済み: Dyuman Joshi 2022 年 8 月 19 日
hello everyone,
I am drawing a graph with the errorbar in the range of 2 sigma values. But I don't want to draw the lines between them. How can I do it?
errorbar(A_T,ce_mean,2*std)
  2 件のコメント
studentmatlaber
studentmatlaber 2022 年 8 月 18 日
thank you very much. Is it possible to put a red dot in addition to this?
Dyuman Joshi
Dyuman Joshi 2022 年 8 月 19 日
Check my answer

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

回答 (1 件)

Dyuman Joshi
Dyuman Joshi 2022 年 8 月 18 日
編集済み: Dyuman Joshi 2022 年 8 月 19 日
%random data
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = [4 3 5 3 5 3 6 4 3 3];
errorbar(x,y,err,'.', 'MarkerEdgeColor','red')

カテゴリ

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