How do I plot only the lower error bars?

20 vues (au cours des 30 derniers jours)
Xochilth Saldana
Xochilth Saldana le 14 Mar 2021
Réponse apportée : dpb le 14 Mar 2021
I am trying to plot only the lower error bars. Here is the way I am currently plotting them. Any suggestions?
residual = N - y_new;
errorbar(x_new,y_new,residual)
  1 commentaire
Russel Burgess
Russel Burgess le 14 Mar 2021
Not the prettiest method as it leaves the bars in but you can set the lower and upper side individually, i.e.:
errorbar(x_new,y_new,residual,zeros(size(residual)))

Connectez-vous pour commenter.

Réponses (2)

Star Strider
Star Strider le 14 Mar 2021
Try this:
errorbar(x_new,y_new,residual,[])
It specifies that the lower error bar is to be plotted and the upper error baar is not.

dpb
dpb le 14 Mar 2021
residual = N - y_new;
errorbar(x_new,y_new,residual,[])
Input arguments for four inputs are:
errorbar(x,y,neg,pos)
If only three arguments, then the third is the error magnitude in both directions.

Catégories

En savoir plus sur Errorbars dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by