How do I plot error bar at only one location ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
HABILA
el 11 de Dic. de 2019
Comentada: HABILA
el 11 de Dic. de 2019
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)
0 comentarios
Respuesta aceptada
Stijn Haenen
el 11 de Dic. de 2019
just plot first without errorbar and than with errorbar for only the 4th value:
plot(u,v,'b')
hold on
errorbar(u(4),v(4),err(4),'b')
Más respuestas (0)
Ver también
Categorías
Más información sobre Errorbars en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!