How do I plot error bar at only one location ?
Mostra commenti meno recenti
Suppose, I have this two data. Here the errorbar is plotted for every v. But I need to put error bat at only one particulat index v(4).
u = 1:10:100;
v = [20 30 45 40 60 65 80 75 95 90];
err = 8*ones(size(v));
errorbar(u,v,err)
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Errorbars in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!