comparison scripts/plot/semilogxerr.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
34 ## additional information. 34 ## additional information.
35 ## 35 ##
36 ## @end deftypefn 36 ## @end deftypefn
37 ## 37 ##
38 ## @seealso{errorbar, loglogerr semilogyerr, polar, mesh, contour, __pltopt__, 38 ## @seealso{errorbar, loglogerr semilogyerr, polar, mesh, contour, __pltopt__,
39 ## bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} 39 ## bar, stairs, replot, xlabel, ylabel, and title}
40 40
41 ## Created: 20.2.2001 41 ## Created: 20.2.2001
42 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi> 42 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi>
43 ## Keywords: errorbar, plotting 43 ## Keywords: errorbar, plotting
44 44
46 46
47 if (nargin < 2) 47 if (nargin < 2)
48 usage ("semilogxerr (...)"); 48 usage ("semilogxerr (...)");
49 endif 49 endif
50 50
51 gset logscale x; 51 __gset__ logscale x;
52 gset nologscale y; 52 __gset__ nologscale y;
53 gset nopolar; 53 __gset__ nopolar;
54 54
55 __errcomm__ ("semilogxerr", varargin{:}); 55 __errcomm__ ("semilogxerr", varargin{:});
56 56
57 endfunction 57 endfunction