Borrar filtros
Borrar filtros

Error bar in a scattered plot!

1 visualización (últimos 30 días)
alberto caracciolo
alberto caracciolo el 5 de Abr. de 2019
Respondida: Star Strider el 5 de Abr. de 2019
Hi,
i'm trying to plot error bars in a scattered plot.
this is my plot:B_O7a_2._plot.png
And i would like to add a fixed error bar (for example of a value of 0.5) on the Y axis to every point. How can i do that?
I've tried with
errFo=0.5
errorbar(y, errFo)
but it doesn't work and i get this error:
Error using errorbar>checkSingleInput (line 271)
YNegativeDelta must be empty or the same size as YData.
Error in errorbar (line 135)
yneg = checkSingleInput(neg, sz, 'YNegativeDelta');
Thank you

Respuestas (1)

Star Strider
Star Strider el 5 de Abr. de 2019
Try this instead:
errorbar(y, errFo*ones(size(y)), 'o')
Experiment to get the result you want.

Categorías

Más información sobre Errorbars en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by