Error bars are automatically offset. they look correct just the error bar for any point should be located at the point before it
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Liam Williams
il 10 Dic 2020
Commentato: Liam Williams
il 10 Dic 2020
scatter(t,d40avg)
hold on
%plot(t,trend40)
errorbar(d40avg,d40std)
hold off
0 Commenti
Risposta accettata
Daniel Pollard
il 10 Dic 2020
The scatter plot is
plot(t, d40avg).
The Error bar plot is
plot(d40avg, d40std).
At first glance it may look like the error bars are higher than you want, but actually they're further to the right. Instead, use
plot(t, d40avg, d40std)
to plot your error bars.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Bar Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!