plotting stander deviations on means

7 visualizzazioni (ultimi 30 giorni)
Kuang-Yu WANG
Kuang-Yu WANG il 29 Giu 2018
Risposto: Adam Danz il 29 Giu 2018
How to plot std on means?
hold on
plot(1:xbig,stdu,'r*')
plot(stdd,'go')
plot(1:xbig,Out)
this is my codes, i have tried stem on it, but the std just connect to the floor. I do not know how to connect the upper std and down std to the mean points with line. Thanks for helping!!

Risposta accettata

Adam Danz
Adam Danz il 29 Giu 2018
Without having the data it's impossible to visualize your plots. I understand that you want to plot standard deviations but that's about all (what's the floor?).
Option 1 is using errorbar() function where you plot a point (eg, the mean) and the standard deviation which shows up as an errorbar.
% Plot a vertical errorbar at (0,5) extending 3 units in each direction
errorbar(0, 5, -3)
Option 2 it sounds like you're trying to plot a line that extends from a lower to upper bound and passes through the mean. For that you can just use
% plot horizontal line from x=-3 to x=3 along y=5
plot([-3, 3], [5 5], 'k-')
or
% plot vertical line from y=-3 to y=3 along x=5
plot([5, 5], [-3 3], 'k-')

Più risposte (1)

Matt J
Matt J il 29 Giu 2018
Modificato: Matt J il 29 Giu 2018
Maybe the errorbar command is what you are looking for?

Categorie

Scopri di più su Errorbars in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by