plot a single Error bars

17 ビュー (過去 30 日間)
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2019 年 9 月 11 日
コメント済み: dpb 2019 年 9 月 16 日
Hi all,
I am trying to create one error bar but I am struggling a lot.
I tried to read the matlab documentation about error bars but the site is down for some reason.
Anyway, I have calculate the standard deviaiton (s=4.13) but I am confused witht the x,y axes
the x axis should be 1 value and the y axis has a range from 0 to 14
please let me know what you think
many thanks
Nikolas
  5 件のコメント
Adam Danz
Adam Danz 2019 年 9 月 13 日
(x,y) are the coordinate you're adding the error bar to.
neg and pos the lower and upper length of the error bar.
so, this line
errorbar(3,4,1,2, 'o')
plots a point at (3,4) and the errorbar extens downward by 1 y-unit and upward by 2 y-units.
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2019 年 9 月 14 日
Alright, thanks a lot I am gonna have a look at website too!!

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

採用された回答

Prabhan Purwar
Prabhan Purwar 2019 年 9 月 16 日
Hi,
Bar chart can be created by making use of bar and errorbar functions as shown in the following code.
x=1; y=8.35;
sd=4.13;
bar(x,y);
hold on
errorbar(x,y,sd)
ylim([0 14])
xticks([0:2])
hold off
Output:
untitled.jpg
Please refer the following link for further information on errorbarfunction
Hope this helps
  1 件のコメント
dpb
dpb 2019 年 9 月 16 日
Ah! Maybe THAT was what OP mean by "how to get a bar instead of *"...I couldn't figure that one out and there was no further input.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by