|
Contents | Previous | Next | Subchapters |
| Syntax |
errorbar(x, y, w, h) |
| See Also | gplot , gbar , ghist |
y direction for the curve defined by
(x, y),
where x and y are each
integer, real, or double-precision column vectors,
and w and h are each
integer, real, or double-precision scalars or column vectors.
The vectors x and y must have the same dimension.
If w is not a scalar,
it must have the same dimension as x.
If h is not a scalar,
it must have the same dimension as x.
x = seq(4)
y = seq(4)
w = .2
h = .4
errorbar(x, y, w, h)
returns the following plot: