フィルターのクリア

Error bar for a set of values

3 ビュー (過去 30 日間)
Viswajit Talluru
Viswajit Talluru 2024 年 5 月 16 日
コメント済み: Viswajit Talluru 2024 年 5 月 16 日
y=[53.3654 16.6489 40.9854 21.7873];
error=[7.3822 4.1028 5.1562 1.2531];
Need to plot bar graph with the error bars corresponding to the values in error.

採用された回答

Ayush Modi
Ayush Modi 2024 年 5 月 16 日
編集済み: Ayush Modi 2024 年 5 月 16 日
Hi Viswajit,
You could achieve this using the functions bar to create a bar graph and errorbar to add the error bars. Here is how you can achieve it:
y = [53.3654 16.6489 40.9854 21.7873];
error = [7.3822 4.1028 5.1562 1.2531];
bar(y)
hold on
numBars = numel(y);
x = 1:numBars;
errorbar(x, y, error, '.')
Please refer to the following MathWorks documentation for more information on:
  1 件のコメント
Viswajit Talluru
Viswajit Talluru 2024 年 5 月 16 日
Thank you

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

その他の回答 (0 件)

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by