comparison scripts/plot/errorbar.m @ 5214:eecc24b92d97

[project @ 2005-03-16 17:14:12 by jwe]
author jwe
date Wed, 16 Mar 2005 17:14:12 +0000
parents c08cb1098afc
children 32c569794216
comparison
equal deleted inserted replaced
5213:390f13fc0f4a 5214:eecc24b92d97
103 ## from @var{y}-@var{ly} to @var{y}+@var{uy}. 103 ## from @var{y}-@var{ly} to @var{y}+@var{uy}.
104 ## 104 ##
105 ## @end deftypefn 105 ## @end deftypefn
106 ## 106 ##
107 ## @seealso{semilogx, semilogy, loglog, polar, mesh, contour, __pltopt__, 107 ## @seealso{semilogx, semilogy, loglog, polar, mesh, contour, __pltopt__,
108 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} 108 ## bar, stairs, replot, xlabel, ylabel, and title}
109 109
110 ## Created: 18.7.2000 110 ## Created: 18.7.2000
111 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi> 111 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi>
112 ## Keywords: errorbar, plotting 112 ## Keywords: errorbar, plotting
113 113
115 115
116 if (nargin < 2) 116 if (nargin < 2)
117 usage ("errorbar (...)"); 117 usage ("errorbar (...)");
118 endif 118 endif
119 119
120 gset nologscale x; 120 __gset__ nologscale x;
121 gset nologscale y; 121 __gset__ nologscale y;
122 gset nopolar; 122 __gset__ nopolar;
123 123
124 __errcomm__ ("errorbar", varargin{:}); 124 __errcomm__ ("errorbar", varargin{:});
125 125
126 endfunction 126 endfunction