hello everyone. i need some help. how to put errorbar to a scattered plot,to each point?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
waqas muhammad
el 29 de En. de 2018
Comentada: waqas muhammad
el 29 de En. de 2018
x=[10,20,30,40,50], y=[15,20,25,35,45],
c=[0.2,0.4,0.5,0.6,0.8]
scatter(x,y)
c is the error, i have to apply it to y,
0 comentarios
Respuesta aceptada
Walter Roberson
el 29 de En. de 2018
Change the scatter call to become
errorbar(x, y, c, 'o');
This linespec of the 'o' marker implies that linestyle 'none' is to be used: when you do any line plotting, specifying a marker without specifying a line style implies that no line should be used.
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Distribution Plots 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!