bar plot from data

조회 수: 2 (최근 30일)
Francesco Marchione
Francesco Marchione 2022년 11월 7일
답변: Francesco Marchione 2022년 11월 7일
Hello,
I have the following data
y = [20 60 40 50 80 90]
and the following errors
err.high = [2 5 6 8 9 5].
err.low = [2 5 6 8 9 5].
I would like to obtain a graph exactly like the one attached, with the maximum values (the y-values) shown and with the legend grouped in the same way. I would like to have the font in latex.
Can you help me write the code in matlab?
Thanks in advance
  댓글 수: 1
Davide Masiello
Davide Masiello 2022년 11월 7일
What have you done so far?

댓글을 달려면 로그인하십시오.

답변 (1개)

Francesco Marchione
Francesco Marchione 2022년 11월 7일
x = 1:6;
data = [20 60 40 50 80 90]';
errhigh = [2 5 6 8 9 5];
errlow = [2 5 6 8 9 5];
bar(x,data)
hold on
er = errorbar(x,data,errlow,errhigh);
er.Color = [0 0 0];
er.LineStyle = 'none';
hold off

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by