Azzera filtri
Azzera filtri

Adding error bars to a plot

26 visualizzazioni (ultimi 30 giorni)
Samuele Bolotta
Samuele Bolotta il 20 Lug 2021
Risposto: Star Strider il 20 Lug 2021
I created six plots. Each of this plot is created from a 4x3 matrix. The 12 values in this matrix are averages. Is there a way to add another 4x3 matrix for each plot, which contains the 12 standard deviations so that I can add error bars?
Thanks!

Risposte (1)

Star Strider
Star Strider il 20 Lug 2021
I do not understand what you want to do, although that is definitely possible.
Examples —
y = rand(4,3)*10;
err = rand(4,3)/5;
figure
errorbar(y, err)
grid
xlim([0 5])
figure
errorbar(y.', err.')
grid
xlim([0 4])
.

Categorie

Scopri di più su Line 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!

Translated by