Scilab 5.3.3
- Scilab help
- Graphics
- 2d_plot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- Sfgrayplot
- Sgrayplot
- champ
- champ1
- champ_properties
- comet
- contour2d
- contour2di
- contourf
- errbar
- fchamp
- fcontour2d
- fec
- fec_properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- oldplot
- paramfplot2d
- plot
- plot2d
- plot2d1
- plot2d2
- plot2d3
- plot2d4
- plot2d_old_version
- polarplot
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
errbar
add vertical error bars on a 2D plot
Calling Sequence
errbar(x,y,em,ep)
Arguments
- x,y,em,ep
four matrices of the same size.
Description
errbar
adds vertical error bars on a 2D plot.
x
and y
have the same meaning as in plot2d
.
em(i,j)
and ep(i,j)
stands for the error interval on the
value y(i,j)
: [y(i,j)-em(i,j),y(i,j)+ep(i,j)]
.
Enter the command errbar()
to see a demo.
Examples
See Also
- plot2d — 2D plot
Authors
J.Ph.C.
<< contourf | 2d_plot | fchamp >> |